qpdf: initial release

This commit is contained in:
Juergen Daubert 2012-10-27 16:07:34 +02:00
parent a8ac4bdbfe
commit 48b7ac99d1
3 changed files with 63 additions and 0 deletions

44
qpdf/.footprint Normal file
View File

@ -0,0 +1,44 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/fix-qdf
-rwxr-xr-x root/root usr/bin/qpdf
-rwxr-xr-x root/root usr/bin/zlib-flate
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/qpdf/
-rw-r--r-- root/root usr/include/qpdf/Buffer.hh
-rw-r--r-- root/root usr/include/qpdf/BufferInputSource.hh
-rw-r--r-- root/root usr/include/qpdf/Constants.h
-rw-r--r-- root/root usr/include/qpdf/DLL.h
-rw-r--r-- root/root usr/include/qpdf/FileInputSource.hh
-rw-r--r-- root/root usr/include/qpdf/InputSource.hh
-rw-r--r-- root/root usr/include/qpdf/Pipeline.hh
-rw-r--r-- root/root usr/include/qpdf/Pl_Buffer.hh
-rw-r--r-- root/root usr/include/qpdf/Pl_Concatenate.hh
-rw-r--r-- root/root usr/include/qpdf/Pl_Count.hh
-rw-r--r-- root/root usr/include/qpdf/Pl_Discard.hh
-rw-r--r-- root/root usr/include/qpdf/Pl_Flate.hh
-rw-r--r-- root/root usr/include/qpdf/Pl_StdioFile.hh
-rw-r--r-- root/root usr/include/qpdf/PointerHolder.hh
-rw-r--r-- root/root usr/include/qpdf/QPDF.hh
-rw-r--r-- root/root usr/include/qpdf/QPDFExc.hh
-rw-r--r-- root/root usr/include/qpdf/QPDFObject.hh
-rw-r--r-- root/root usr/include/qpdf/QPDFObjectHandle.hh
-rw-r--r-- root/root usr/include/qpdf/QPDFTokenizer.hh
-rw-r--r-- root/root usr/include/qpdf/QPDFWriter.hh
-rw-r--r-- root/root usr/include/qpdf/QPDFXRefEntry.hh
-rw-r--r-- root/root usr/include/qpdf/QTC.hh
-rw-r--r-- root/root usr/include/qpdf/QUtil.hh
-rw-r--r-- root/root usr/include/qpdf/Types.h
-rw-r--r-- root/root usr/include/qpdf/qpdf-c.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libqpdf.a
lrwxrwxrwx root/root usr/lib/libqpdf.so -> libqpdf.so.8.1.0
lrwxrwxrwx root/root usr/lib/libqpdf.so.8 -> libqpdf.so.8.1.0
-rwxr-xr-x root/root usr/lib/libqpdf.so.8.1.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libqpdf.pc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/fix-qdf.1.gz
-rw-r--r-- root/root usr/man/man1/qpdf.1.gz
-rw-r--r-- root/root usr/man/man1/zlib-flate.1.gz

1
qpdf/.md5sum Normal file
View File

@ -0,0 +1 @@
af6f6f964481295a6ca0766185bfa274 qpdf-3.0.2.tar.gz

18
qpdf/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: Utility that does structural, content-preserving transformations on PDF files
# URL: http://qpdf.sourceforge.net/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: libpcre zlib
name=qpdf
version=3.0.2
release=1
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/man
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
rmdir $PKG/usr/share
}