contrib/libdivx/Pkgfile

23 lines
830 B
Plaintext
Raw Normal View History

2007-06-26 09:05:44 +02:00
# Description: DivX Codecs for Linux (binary).
# URL: http://labs.divx.com/DivXLinuxCodec
2008-03-26 03:45:31 +01:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2007-06-26 09:05:44 +02:00
# Packager: Martin Opel, mo at obbl-net dot de
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
2007-11-15 07:11:33 +01:00
install -d tmp
2007-06-26 09:05:44 +02:00
unzip -d tmp -P h08pzt4 contents.dat
install -d $PKG/usr/include/divx/{common,decoder,encoder}
2008-05-18 07:43:03 +02:00
install -m 0644 -D tmp/lib/libdivx.so $PKG/usr/lib/libdivx.so.0
install -m 0644 -t $PKG/usr/include/divx/common/ tmp/include/common/*
install -m 0644 -t $PKG/usr/include/divx/decoder/ tmp/include/decoder/*
install -m 0644 -t $PKG/usr/include/divx/encoder/ tmp/include/encoder/*
ln -s /usr/lib/libdivx.so.0 $PKG/usr/lib/libdivx.so
2007-06-26 09:05:44 +02:00
}