blob: 220dbc8f54e360a9fd226039e44b2da35e87b67a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
NAME="libao"
DESC="Cross-platform audio output library and plugins"
MAKEDEPS=" alsa-lib automake autoconf libtool pulseaudio"
PKG_VER=1.2.2
SOURCE="https://github.com/xiph/libao/archive/$PKG_VER.tar.gz"
ADDITIONAL="
CVE-2017-11548.patch
"
prepare() {
apply_patches
autoreconf -fi
}
build() {
./configure \
--prefix=/usr \
--disable-esd \
--disable-arts \
--enable-alsa-mmap \
--enable-pulse
make
}
package() {
make DESTDIR="$PKG_DEST" install
# No need for the liboss plugin
rm -f "$PKG_DEST"/usr/lib/ao/plugins-4/liboss.so
}
|