libdivx: moved from romsters repo

This commit is contained in:
Danny Rawlins 2007-06-26 17:05:44 +10:00
parent 868a495574
commit d763ff2080
3 changed files with 47 additions and 0 deletions

23
libdivx/.footprint Normal file
View File

@ -0,0 +1,23 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/divx/
drwxr-xr-x root/root usr/include/divx/common/
-rw-r--r-- root/root usr/include/divx/common/DivXPortable.h
-rw-r--r-- root/root usr/include/divx/common/FormatInfo.h
-rw-r--r-- root/root usr/include/divx/common/FourCC.h
-rw-r--r-- root/root usr/include/divx/common/FourCCs.h
drwxr-xr-x root/root usr/include/divx/decoder/
-rw-r--r-- root/root usr/include/divx/decoder/LibQDec.h
drwxr-xr-x root/root usr/include/divx/encoder/
-rw-r--r-- root/root usr/include/divx/encoder/Cli.h
-rw-r--r-- root/root usr/include/divx/encoder/DivXException.h
-rw-r--r-- root/root usr/include/divx/encoder/EncoderCallback.h
-rw-r--r-- root/root usr/include/divx/encoder/EncoderInterface.h
-rw-r--r-- root/root usr/include/divx/encoder/FeedbackInterface.h
-rw-r--r-- root/root usr/include/divx/encoder/FrameInput.h
-rw-r--r-- root/root usr/include/divx/encoder/FrameOutput.h
-rw-r--r-- root/root usr/include/divx/encoder/FrameResult.h
-rw-r--r-- root/root usr/include/divx/encoder/Settings.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libdivx.so
lrwxrwxrwx root/root usr/lib/libdivx.so.0 -> /usr/lib/libdivx.so

1
libdivx/.md5sum Normal file
View File

@ -0,0 +1 @@
9f5a224f036417375628cda747a170cd divx611-20060201-gcc4.0.1.tar.gz

23
libdivx/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: DivX Codecs for Linux (binary).
# URL: http://labs.divx.com/DivXLinuxCodec
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Martin Opel, mo at obbl-net dot de
# Depends on:
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
mkdir -p tmp
unzip -d tmp -P h08pzt4 contents.dat
install -d $PKG/usr/include/divx/{common,decoder,encoder}
install -D -m755 tmp/lib/libdivx.so $PKG/usr/lib/libdivx.so
install -m644 tmp/include/common/* $PKG/usr/include/divx/common/
install -m644 tmp/include/decoder/* $PKG/usr/include/divx/decoder/
install -m644 tmp/include/encoder/* $PKG/usr/include/divx/encoder/
ln -fs /usr/lib/libdivx.so $PKG/usr/lib/libdivx.so.0
}