blob: 6c3af7dc5564eae61fdef1614e4058d07ab72c35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: Format de compression audio spécialement adapté pour la voix
# URL: http://www.speex.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libogg
# Run on: libogg
name=speex
version=1.2rc1
release=1
source=( http://downloads.us.xiph.org/releases/$name/$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
}
|