wok view poppler/receipt @ rev 2300

Up: bash (4.0)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Feb 23 13:44:27 2009 +0100 (2009-02-23)
parents 4c400bd09135
children 38878fc49122
line source
1 # SliTaz package receipt.
3 PACKAGE="poppler"
4 VERSION="0.8.3"
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 WEB_SITE="http://poppler.freedesktop.org/"
11 WGET_URL="http://poppler.freedesktop.org/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }