mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-06 09:26:32 +00:00
20 lines
357 B
Plaintext
20 lines
357 B
Plaintext
# description: Cross-platform audio output library and plugins.
|
|
# depends: alsa-lib apulse
|
|
|
|
name=libao
|
|
version=1.2.2
|
|
release=1
|
|
source=https://github.com/xiph/$name/archive/$version/$name-$version.tar.gz
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./autogen.sh
|
|
./configure --prefix=/usr --enable-pulse=yes
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|