CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libidl: added overlay port
[ports/opt-arm64.git] / speex / Pkgfile
1 # Description: A free codec library for speech.
2 # URL: http://www.speex.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Packager: Younes Hafri ycrux at club-internet dot fr
6 # Depends on: libogg
7
8 name=speex
9 version=1.2rc2
10 release=1
11 source=(http://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz)
12
13 build() {
14 cd $name-$version
15
16 ./configure --prefix=/usr \
17 --mandir=$PKG/usr/man \
18 --disable-static \
19 --build=aarch64-unknown-linux-gnueabi
20
21 sed -i -e "/^SUBDIRS = /s/doc //" Makefile
22 make
23 make prefix=$PKG/usr install
24 }