wok-current view poppler/receipt @ rev 2655
Add: pm-utils
| author | Dominique Corbex <domcox@users.sourceforge.net> | 
|---|---|
| date | Sat Apr 18 17:39:15 2009 +0200 (2009-04-18) | 
| parents | d1aba649375c | 
| children | b2b20722b0b6 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="poppler"
     4 VERSION="0.10.4"
     5 CATEGORY="office"
     6 SHORT_DESC="Poppler is a PDF rendering library."
     7 MAINTAINER="pankso@slitaz.org"
     8 BUILD_DEPENDS="pkg-config jpeg fontconfig"
     9 TARBALL="$PACKAGE-$VERSION.tar.gz"
    10 DEPENDS="expat freetype gtk+ jpeg libxml2 xorg-libXdamage"
    11 WEB_SITE="http://poppler.freedesktop.org/"
    12 WGET_URL="http://poppler.freedesktop.org/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	./configure \
    19 		--prefix=/usr \
    20 		--infodir=/usr/share/info \
    21 		--mandir=/usr/share/man \
    22 		$CONFIGURE_ARGS &&
    23 	make &&
    24 	make DESTDIR=$PWD/_pkg install
    25 }
    27 # Rules to gen a SliTaz package suitable for Tazpkg.
    28 genpkg_rules()
    29 {
    30 	mkdir -p $fs/usr/lib
    31 	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    32 }