wok annotate poppler/receipt @ rev 725

Up: poppler* (0.8.2)
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 02 23:00:08 2008 +0200 (2008-05-02)
parents de8dad81f96a
children 60da211b6bc2
rev   line source
pankso@27 1 # SliTaz package receipt.
pankso@27 2
pankso@27 3 PACKAGE="poppler"
pankso@725 4 VERSION="0.8.2"
pankso@205 5 CATEGORY="office"
pankso@27 6 SHORT_DESC="Poppler is a PDF rendering library."
pankso@27 7 MAINTAINER="pankso@slitaz.org"
pankso@27 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@27 9 WEB_SITE="http://poppler.freedesktop.org/"
pankso@27 10 WGET_URL="http://poppler.freedesktop.org/$TARBALL"
pankso@27 11
pankso@27 12 # Rules to configure and make the package.
pankso@27 13 compile_rules()
pankso@27 14 {
pankso@27 15 cd $src
pankso@725 16 ./configure \
pankso@725 17 --prefix=/usr \
pankso@725 18 --infodir=/usr/share/info \
pankso@725 19 --mandir=/usr/share/man \
pankso@725 20 $CONFIGURE_ARGS
pankso@27 21 make
pankso@27 22 make DESTDIR=$PWD/_pkg install
pankso@27 23 }
pankso@27 24
pankso@27 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@27 26 genpkg_rules()
pankso@27 27 {
pankso@27 28 mkdir -p $fs/usr/lib
pankso@27 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@27 30 }