blob: 8afc48ccfff7d6a3db20d6664883a0ca95a4afc2 (
plain)
1 # Description: A PDF rendering library based on xpdf 3.0
2 # URL: http://poppler.freedesktop.org/
3 # Maintainer: Lucas Hazel, lucas at die dot net dot au
4 # Packager: Matt Housh, jaeger at crux dot nu
5 # Depends on: t1lib, gtk, ghostscript, pkg-config
6 # Optional: qt3 qt4
7
8 name=poppler
9 version=0.12.3
10 release=1
11 source=(http://poppler.freedesktop.org/$name-$version.tar.gz)
12
13 build()
14 {
15 cd $name-$version
16 ./configure \
17 --prefix=/usr \
18 --mandir=/usr/man \
19 --enable-zlib
20 make
21 make DESTDIR=$PKG install
22 rm -rf $PKG/usr/share
23 }
|