Merge branch '2.8' into 3.0

This commit is contained in:
Juergen Daubert 2013-01-21 16:56:05 +01:00
commit 215086ff4f
3 changed files with 31 additions and 0 deletions

10
mupdf/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/mubusy
-rwxr-xr-x root/root usr/bin/mudraw
-rwxr-xr-x root/root usr/bin/mupdf
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rwxr-xr-x root/root usr/man/man1/mubusy.1.gz
-rwxr-xr-x root/root usr/man/man1/mudraw.1.gz
-rwxr-xr-x root/root usr/man/man1/mupdf.1.gz

2
mupdf/.md5sum Normal file
View File

@ -0,0 +1,2 @@
f7b5fd753f40aca207e9afd70d8f8edf mupdf-1.1-source.tar.gz
eef876cf637b24489e1c55cec4f753e5 mupdf-thirdparty-2012-08-14.zip

19
mupdf/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Lightweight PDF and XPS viewer
# URL: http://www.mupdf.com/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: freetype libjpeg xorg-libxext
name=mupdf
version=1.1
release=1
source=(http://mupdf.com/download/$name-$version-source.tar.gz
http://mupdf.com/download/$name-thirdparty-2012-08-14.zip)
build() {
mv thirdparty $name-$version-source
cd $name-$version-source
rm -r thirdparty/{freetype*,jpeg*,zlib*}
make build=release
make prefix=$PKG/usr mandir=$PKG/usr/man install
rm -r $PKG/usr/{include,lib}
}