wok annotate poppler/receipt @ rev 1625

get-texlive add perl to DEPEND, ask user to confirm installation
author Pierre-Jean Fichet <sygne@ombres.eu>
date Thu Oct 23 20:14:35 2008 +0000 (2008-10-23)
parents 4c400bd09135
children 38878fc49122
rev   line source
pankso@27 1 # SliTaz package receipt.
pankso@27 2
pankso@27 3 PACKAGE="poppler"
pankso@873 4 VERSION="0.8.3"
pankso@205 5 CATEGORY="office"
pankso@27 6 SHORT_DESC="Poppler is a PDF rendering library."
pankso@27 7 MAINTAINER="pankso@slitaz.org"
pascal@1511 8 BUILD_DEPENDS="pkg-config jpeg fontconfig"
pankso@27 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@27 10 WEB_SITE="http://poppler.freedesktop.org/"
pankso@27 11 WGET_URL="http://poppler.freedesktop.org/$TARBALL"
pankso@27 12
pankso@27 13 # Rules to configure and make the package.
pankso@27 14 compile_rules()
pankso@27 15 {
pankso@27 16 cd $src
pankso@725 17 ./configure \
pankso@725 18 --prefix=/usr \
pankso@725 19 --infodir=/usr/share/info \
pankso@725 20 --mandir=/usr/share/man \
pascal@1491 21 $CONFIGURE_ARGS &&
pascal@1491 22 make &&
pankso@27 23 make DESTDIR=$PWD/_pkg install
pankso@27 24 }
pankso@27 25
pankso@27 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@27 27 genpkg_rules()
pankso@27 28 {
pankso@27 29 mkdir -p $fs/usr/lib
pankso@27 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@27 31 }