opt/libao/Pkgfile

23 lines
441 B
Plaintext
Raw Normal View History

# Description: Cross-platform audio output library and plugins.
# URL: https://www.xiph.org/ao/
2014-11-10 13:25:50 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: alsa-lib
2020-02-01 11:46:55 +01:00
# Optional: libpulse
2006-02-23 16:26:10 +01:00
name=libao
2020-02-01 11:46:55 +01:00
version=1.2.2
2006-02-23 16:26:10 +01:00
release=1
2020-02-01 11:46:55 +01:00
source=(https://github.com/xiph/libao/archive/$version/$name-$version.tar.gz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2006-09-30 13:29:34 +02:00
2020-02-01 11:46:55 +01:00
./autogen.sh
./configure --prefix=/usr
2006-09-30 13:29:34 +02:00
make
make DESTDIR=$PKG install
2006-09-30 13:29:34 +02:00
rm -r $PKG/usr/share/doc
2006-02-23 16:26:10 +01:00
}