libdivx: Pkgfile cleanup

This commit is contained in:
Danny Rawlins 2008-05-18 15:43:03 +10:00
parent a858f0174a
commit 278ddb1d25
2 changed files with 7 additions and 8 deletions

View File

@ -19,5 +19,5 @@ drwxr-xr-x root/root usr/include/divx/encoder/
-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
lrwxrwxrwx root/root usr/lib/libdivx.so -> /usr/lib/libdivx.so.0
-rw-r--r-- root/root usr/lib/libdivx.so.0

View File

@ -2,7 +2,6 @@
# 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
@ -14,10 +13,10 @@ build() {
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
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
}