CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
python: updated to 2.7.18-2
[ports/opt-arm64.git] / libtheora / Pkgfile
1 # Description: A free and open video compression format from the Xiph.org Foundation.
2 # URL: http://www.theora.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: Matt Housh, jaeger at crux dot nu
6 # Depends on: libvorbis
7
8 name=libtheora
9 version=1.1.1
10 release=1
11 source=(http://downloads.xiph.org/releases/theora/$name-$version.tar.xz)
12
13 build() {
14 cd $name-$version
15
16 ./configure --prefix=/usr \
17 --disable-examples \
18 --build=aarch64-unknown-linux-gnueabi
19
20 make
21 make DESTDIR=$PKG install
22
23 rm -r $PKG/usr/share/doc
24 rmdir $PKG/usr/share
25 }