blob: 5b8dd925172b5ae1dbaa9bcbba471695b9fa39d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Contient librairie audio
# URL: http://xiph.org/ao/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: alsa-lib, nas, esound
# Run on: alsa-lib,nas,esound
name=libao
version=0.8.8
release=1
source=( http://downloads.xiph.org/releases/ao/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}
|