blob: b1c017b6489f99d0f3aed86033a657fc45ac4e23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "A cross platform audio library"
HOMEPAGE = "http://www.xiph.org/ao/"
SECTION = "libs"
PRIORITY = "optional"
SRC_URI = "http://www.xiph.org/ao/src/libao-${PV}.tar.gz \
file://configure.patch;patch=1"
inherit autotools pkgconfig
EXTRA_OECONF = "--disable-esd --disable-esdtest \
--disable-alsa --disable-alsa09 \
--disable-arts --disable-nas"
do_stage() {
install -d ${STAGING_INCDIR}/ao
install -m 0644 ${S}/include/ao/ao.h ${S}/include/ao/os_types.h \
${S}/include/ao/plugin.h ${STAGING_INCDIR}/ao/
oe_libinstall -so -C src libao ${STAGING_LIBDIR}
}
|