18 lines
481 B
Plaintext
18 lines
481 B
Plaintext
# Description: The Qpdf package contains command-line programs and library that do structural, content-preserving transformations on PDF files.
|
|
# URL: http://qpdf.sourceforge.net/
|
|
# Packager: milisarge
|
|
# Depends on: pcre libxslt
|
|
|
|
name=qpdf
|
|
version=6.0.0
|
|
release=2
|
|
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|