f6e2c7b60d92f76ddbd4f924a16ce5f22be56fb7
[openwrt/svn-archive/archive.git] / utils / alsa-utils / Makefile
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=alsa-utils
11 PKG_VERSION:=1.0.24.2
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/utils/ \
16 http://alsa.cybermirror.org/utils/
17 PKG_MD5SUM:=8238cd57cb301d1c36bcf0ecb59ce6b2
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/alsa-utils
23 SECTION:=utils
24 CATEGORY:=Utilities
25 DEPENDS:=+alsa-lib +libncurses +libpthread
26 TITLE:=ALSA (Advanced Linux Sound Architecture) utilities
27 URL:=http://www.alsa-project.org/
28 endef
29
30 define Package/alsa-utils-tests
31 $(call Package/alsa-utils/Default)
32 SECTION:=utils
33 CATEGORY:=Utilities
34 TITLE:=ALSA utilities test data (adds ~1.3M to image)
35 endef
36
37 define Build/Configure
38 $(call Build/Configure/Default, \
39 --disable-rpath \
40 --disable-alsatest \
41 --disable-xmlto \
42 , \
43 ac_cv_prog_ncurses5_config=no \
44 ac_cv_prog_ncursesw5_config=no \
45 )
46 endef
47
48 define Package/alsa-utils/install
49 $(INSTALL_DIR) $(1)/usr/{s,}bin
50 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/amixer $(1)/usr/bin/
51 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/alsamixer $(1)/usr/bin/
52 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/aplay $(1)/usr/bin/
53 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/arecord $(1)/usr/bin/
54 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/alsactl $(1)/usr/sbin/
55
56 $(INSTALL_DIR) $(1)/usr/share/alsa/init
57 $(INSTALL_DATA) \
58 $(PKG_INSTALL_DIR)/usr/share/alsa/init/* \
59 $(1)/usr/share/alsa/init/
60 endef
61
62 define Package/alsa-utils-tests/install
63 $(INSTALL_DIR) $(1)/usr/{s,}bin
64 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/speaker-test $(1)/usr/bin/
65 $(INSTALL_DIR) $(1)/usr/share/sounds/alsa
66 $(INSTALL_DATA) \
67 $(PKG_INSTALL_DIR)/usr/share/sounds/alsa/* \
68 $(1)/usr/share/sounds/alsa/
69 endef
70
71 $(eval $(call BuildPackage,alsa-utils))
72 $(eval $(call BuildPackage,alsa-utils-tests))