summaryrefslogtreecommitdiff
path: root/package/alsa-lib
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-10-04 10:41:02 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-10-04 10:41:02 +0200
commit746bcde60521a8717fe109085b458a3509733e51 (patch)
treea12dbb9f5b1caf43a56f461138f4eb05feb58521 /package/alsa-lib
parentb56b54baadf138a6f1823eac2bf63c5d43bf0a09 (diff)
make sound support monolithic
It is really hard to get it right, with the dependencies in this case. So if a user wants sound support, he will just get it included in the kernel. If not, just do not activate it.
Diffstat (limited to 'package/alsa-lib')
-rw-r--r--package/alsa-lib/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/package/alsa-lib/Makefile b/package/alsa-lib/Makefile
index dd5e9a3b2..cfc3d47f7 100644
--- a/package/alsa-lib/Makefile
+++ b/package/alsa-lib/Makefile
@@ -5,7 +5,7 @@ include ${ADK_TOPDIR}/rules.mk
PKG_NAME:= alsa-lib
PKG_VERSION:= 1.0.28
-PKG_RELEASE:= 4
+PKG_RELEASE:= 5
PKG_MD5SUM:= c9e21b88a2b3e6e12ea7ba0f3b271fc3
PKG_DESCR:= sound library
PKG_SECTION:= libs/audio
@@ -32,9 +32,14 @@ HOST_STYLE:= auto
CONFIGURE_ARGS+= --disable-python
alsa-lib-install:
- ${INSTALL_DIR} ${IDIR_ALSA_LIB}/usr/lib ${IDIR_ALSA_LIB}/usr/share/alsa
+ ${INSTALL_DIR} ${IDIR_ALSA_LIB}/usr/lib
+ ${INSTALL_DIR} ${IDIR_ALSA_LIB}/usr/share/alsa/{cards,pcm}
${CP} ${WRKINST}/usr/lib/libasound.so* ${IDIR_ALSA_LIB}/usr/lib
${CP} ${WRKINST}/usr/share/alsa/alsa.conf ${IDIR_ALSA_LIB}/usr/share/alsa
+ ${CP} ${WRKINST}//usr/share/alsa/cards/aliases.conf \
+ ${IDIR_ALSA_LIB}/usr/share/alsa/cards
+ ${CP} ${WRKINST}//usr/share/alsa/pcm/*.conf \
+ ${IDIR_ALSA_LIB}/usr/share/alsa/pcm
include ${ADK_TOPDIR}/mk/host-bottom.mk
include ${ADK_TOPDIR}/mk/pkg-bottom.mk