wok view poppler/receipt @ rev 1029

Add get-ipw2100-firmware and get-ipw2200-firmware
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 10 20:09:55 2008 +0000 (2008-07-10)
parents 67255ebad6ce
children 4c400bd09135
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 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 \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }