CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
xterm: updated to 332
[ports/opt-arm64.git] / libtheora / Pkgfile
CommitLineData
c3658aea
VM
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
8name=libtheora
9version=1.1.1
10release=1
11source=(http://downloads.xiph.org/releases/theora/$name-$version.tar.xz)
12
13build() {
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}