wok view poppler/receipt @ rev 275

UP: slitaz-hacker with new default files
author Christophe Lincoln <pankso@slitaz.org>
date Mon Feb 25 16:00:35 2008 +0100 (2008-02-25)
parents 99715173ee02
children 67255ebad6ce
line source
1 # SliTaz package receipt.
3 PACKAGE="poppler"
4 VERSION="0.6.1"
5 CATEGORY="office"
6 SHORT_DESC="Poppler is a PDF rendering library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://poppler.freedesktop.org/"
10 WGET_URL="http://poppler.freedesktop.org/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
27 strip -s $fs/usr/lib/*
28 }