blob: d134298316f4eca0e112636adb14e4425a8d5aa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Alsa sound library"
MAINTAINER = "Lorn Potter <lpotter@trolltech.com>"
LICENSE = "GPL"
SECTION = "base"
FILES_alsa-lib_append = " ${datadir}/alsa"
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/
}
|