contrib/libdivx/Pkgfile
2008-03-26 13:58:45 +11:00

24 lines
837 B
Plaintext

# Description: DivX Codecs for Linux (binary).
# URL: http://labs.divx.com/DivXLinuxCodec
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: Martin Opel, mo at obbl-net dot de
# Depends on: unzip
name=libdivx
version=6.1.1
release=1
source=(http://download.divx.com/labs/divx${version//./}-20060201-gcc4.0.1.tar.gz)
build() {
cd divx${version//./}-20060201-gcc4.0.1
install -d tmp
unzip -d tmp -P h08pzt4 contents.dat
install -d $PKG/usr/include/divx/{common,decoder,encoder}
install -D -m 0755 tmp/lib/libdivx.so $PKG/usr/lib/libdivx.so
install -m 0644 tmp/include/common/* $PKG/usr/include/divx/common/
install -m 0644 tmp/include/decoder/* $PKG/usr/include/divx/decoder/
install -m 0644 tmp/include/encoder/* $PKG/usr/include/divx/encoder/
ln -fs /usr/lib/libdivx.so $PKG/usr/lib/libdivx.so.0
}