blob: e5e4747fb112ec01cdb2b35d54319d56aa0423ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Contient librairie audio
# URL: http://xiph.org/ao/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=libelf
version=0.8.10
release=1
source=( http://www.mr511.de/software/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--enable-shared \
--enable-gnu-names \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make
make prefix=$PKG/usr install
rm -rf $PKG/usr/share
}
|