wok view poppler/receipt @ rev 2940

Up: libgcrypt-* (1.4.4)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri May 08 00:13:03 2009 +0200 (2009-05-08)
parents 9b20db26bb2f
children e8ba4e0f7aff
line source
1 # SliTaz package receipt.
3 PACKAGE="poppler"
4 VERSION="0.10.6"
5 CATEGORY="office"
6 SHORT_DESC="Poppler is a PDF rendering library."
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="pkg-config jpeg fontconfig"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 DEPENDS="expat freetype gtk+ jpeg libxml2 xorg-libXdamage"
11 WEB_SITE="http://poppler.freedesktop.org/"
12 WGET_URL="http://poppler.freedesktop.org/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --enable-zlib \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }