diff options
author | Koen Kooi <koen@openembedded.org> | 2006-11-16 12:33:11 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-11-16 12:33:11 +0000 |
commit | 33d4030d8dc531e3b62c9939ab9b1f7cdd995752 (patch) | |
tree | a782c93f8dff98a703c3c755126f3de8b0eed2f3 /packages/alsa | |
parent | 246827b8b440f0ee94343e8e9953f83e1982d786 (diff) |
alsa-lib: update to 1.0.13
Diffstat (limited to 'packages/alsa')
-rw-r--r-- | packages/alsa/alsa-lib_1.0.13.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/alsa/alsa-lib_1.0.13.bb b/packages/alsa/alsa-lib_1.0.13.bb new file mode 100644 index 0000000000..987a5901f4 --- /dev/null +++ b/packages/alsa/alsa-lib_1.0.13.bb @@ -0,0 +1,33 @@ +DESCRIPTION = "Alsa sound library" +HOMEPAGE = "http://www.alsa-project.org" +SECTION = "libs/multimedia" +LICENSE = "GPL" +PR = "r0" + +# configure.in sets -D__arm__ on the command line for any arm system +# (not just those with the ARM instruction set), this should be removed, +# (or replaced by a permitted #define). +#FIXME: remove the following +ARM_INSTRUCTION_SET = "arm" + +SRC_URI = "ftp://ftp.alsa-project.org/pub/lib/alsa-lib-${PV}.tar.bz2" + +inherit autotools pkgconfig + +EXTRA_OECONF = "--with-cards=pdaudiocf --with-oss=yes" + +do_stage() { + oe_libinstall -so -C src libasound ${STAGING_LIBDIR}/ + install -d ${STAGING_INCDIR}/alsa/sound + install -m 0644 include/*.h ${STAGING_INCDIR}/alsa/ + install -m 0644 include/sound/ainstr*.h ${STAGING_INCDIR}/alsa/sound/ + install -d ${STAGING_DATADIR}/aclocal + install -m 0644 utils/alsa.m4 ${STAGING_DATADIR}/aclocal/ +} + +PACKAGES =+ "alsa-server libasound alsa-conf alsa-doc alsa-dev" +FILES_${PN}-dbg += "${libdir}/alsa-lib/*/.debu*" +FILES_libasound = "${libdir}/libasound.so.*" +FILES_alsa-server = "${bindir}/*" +FILES_alsa-conf = "${datadir}" +FILES_alsa-dev += "${libdir}/pkgconfig/ /usr/include/" |