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