summaryrefslogtreecommitdiff
path: root/alsa-lib
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-01-02 22:16:42 +0000
committerChris Larson <clarson@kergoth.com>2004-01-02 22:16:42 +0000
commitd20d9914ea43abaf0d6c6e9cf18d91faf0431da2 (patch)
treef767068b61d823ccd539bd164a9d6b7987c54370 /alsa-lib
parentc9ba991a3c115f59afea73879ba8ffc8eb13d4a0 (diff)
Various build bugfixes, as spotted in my recent oemake run.
BKrev: 3ff5edcaWEB85eU9ztdxwMRHWdMo1A
Diffstat (limited to 'alsa-lib')
-rw-r--r--alsa-lib/alsa-lib_0.9.8.oe22
1 files changed, 22 insertions, 0 deletions
diff --git a/alsa-lib/alsa-lib_0.9.8.oe b/alsa-lib/alsa-lib_0.9.8.oe
index e69de29bb2..bf1e1e2c61 100644
--- a/alsa-lib/alsa-lib_0.9.8.oe
+++ b/alsa-lib/alsa-lib_0.9.8.oe
@@ -0,0 +1,22 @@
+DESCRIPTION="Alsa sound library"
+MAINTAINER="Lorn Potter <lpotter@trolltech.com>"
+LICENSE="GPL"
+DEPENDS="virtual/libc"
+
+SRC_URI="ftp://ftp.alsa-project.org/pub/lib/alsa-lib-${PV}.tar.bz2"
+
+inherit autotools libtool
+
+EXTRA_OECONF="--with-cards=pdaudiocf --with-oss=yes"
+
+do_stage () {
+ install -m 0755 src/.libs/libasound.so.2.0.0 ${STAGING_LIBDIR}/
+ ln -sf libasound.so.2.0.0 ${STAGING_LIBDIR}/libasound.so.2
+ ln -sf libasound.so.2.0.0 ${STAGING_LIBDIR}/libasound.so
+ install -d ${STAGING_DIR}/target/include/alsa/sound
+ install -m 0644 include/*.h ${STAGING_DIR}/target/include/alsa/
+ install -m 0644 include/sound/ainstr*.h ${STAGING_DIR}/target/include/alsa/sound/
+ install -d ${PKG_CONFIG_DIR}
+ install -m 0644 utils/alsa.pc ${PKG_CONFIG_DIR}/
+ install -m 0644 utils/alsa.m4 ${STAGING_DIR}/share/aclocal/
+}