wok annotate poppler/receipt @ rev 205

Full up category office
author Christophe Lincoln <pankso@slitaz.org>
date Wed Feb 13 14:12:47 2008 +0100 (2008-02-13)
parents 99715173ee02
children 67255ebad6ce
rev   line source
pankso@27 1 # SliTaz package receipt.
pankso@27 2
pankso@27 3 PACKAGE="poppler"
pankso@27 4 VERSION="0.6.1"
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@27 16 ./configure --prefix=/usr --infodir=/usr/share/info \
pankso@27 17 --mandir=/usr/share/man $CONFIGURE_ARGS
pankso@27 18 make
pankso@27 19 make DESTDIR=$PWD/_pkg install
pankso@27 20 }
pankso@27 21
pankso@27 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@27 23 genpkg_rules()
pankso@27 24 {
pankso@27 25 mkdir -p $fs/usr/lib
pankso@27 26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@27 27 strip -s $fs/usr/lib/*
pankso@27 28 }