credit where credit is due
[openwrt/staging/florian.git] / openwrt / package / alsa / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=alsa-driver
13 PKG_VERSION:=1.0.11
14 PKG_RELEASE:=1
15 PKG_MD5SUM:=57534e4297cd683371402220e3753885
16
17 PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
18 PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/driver/
19 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
20 PKG_CAT:=bzcat
21
22 include $(INCLUDE_DIR)/package.mk
23
24 ifeq ($(LINUX_KARCH),i386)
25 KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-i386/mach-generic -I$(LINUX_DIR)/include/asm-i386/mach-default
26 KERNEL_C_OPTS:= -Os -mpreferred-stack-boundary=2 -march=i486 -fno-unit-at-a-time
27 endif
28 ifeq ($(LINUX_KARCH),mips)
29 KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-mips/mach-generic
30 KERNEL_C_OPTS:= -Os -G 0 -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 -Wa,-32 -Wa,-march=mips32 -Wa,-mips32 -Wa,--trap
31 endif
32
33 define Package/kmod-alsa
34 SECTION:=drivers
35 CATEGORY:=Drivers
36 DEPENDS:=@PCI_SUPPORT
37 TITLE:=Advanced Linux Sound Architecture
38 DESCRIPTION:=Advanced Linux Sound Architecture
39 URL:=http://alsa-project.org/
40 VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
41 endef
42
43 define Build/Configure
44 (cd $(PKG_BUILD_DIR); \
45 CFLAGS="$(KERNEL_C_INCS)" \
46 ./configure \
47 --with-build=$(LINUX_DIR) \
48 --with-kernel=$(LINUX_DIR) \
49 --with-cross=$(KERNEL_CROSS) \
50 --with-redhat=no \
51 --with-suse=no \
52 --with-oss=yes \
53 --with-isapnp=no \
54 --with-sequencer=no \
55 --with-cards=usb-audio \
56 );
57 endef
58
59 define Build/Compile
60 $(MAKE) -C $(PKG_BUILD_DIR) \
61 ARCH="$(LINUX_KARCH)" \
62 CROSS_COMPILE="$(TARGET_CROSS)" \
63 c_opts="$(KERNEL_C_OPTS)" \
64 all
65 endef
66
67 define Package/kmod-alsa/install
68 install -d -m0755 $(1)/lib/modules/$(LINUX_VERSION)
69 install -m0644 $(PKG_BUILD_DIR)/modules/*.$(LINUX_KMOD_SUFFIX) \
70 $(1)/lib/modules/$(LINUX_VERSION)/
71 install -d -m0755 $(1)/etc/modules.d
72 install -m0644 ./files/alsa.modules $(1)/etc/modules.d/70-alsa
73 endef
74
75 $(eval $(call BuildPackage,kmod-alsa))