wok-4.x annotate libgnomeprintui/receipt @ rev 2412
bristuff, squashfs, db: check for patch package
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Mar 10 11:52:45 2009 +0000 (2009-03-10) |
parents | 4c400bd09135 |
children | 4786cbebbb4b |
rev | line source |
---|---|
pankso@37 | 1 # SliTaz package receipt. |
pankso@37 | 2 |
pankso@37 | 3 PACKAGE="libgnomeprintui" |
pankso@37 | 4 VERSION="2.18.0" |
pankso@209 | 5 CATEGORY="x-window" |
pankso@37 | 6 SHORT_DESC="GNOME print user interface library" |
pankso@37 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@37 | 8 DEPENDS="gtk+ libgnomeprint libgnomecanvas" |
pascal@1524 | 9 BUILD_DEPENDS="perl-xml-parser pkg-config gtk+ gnome-icon-theme libgnomecanvas libgnomeprint libgnomeprint-dev" |
pankso@37 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@37 | 11 WEB_SITE="http://www.gnome.org/" |
pankso@37 | 12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/2.18/$TARBALL" |
pankso@37 | 13 |
pankso@37 | 14 # Rules to configure and make the package. |
pankso@37 | 15 compile_rules() |
pankso@37 | 16 { |
pankso@37 | 17 cd $src |
pankso@37 | 18 ./configure \ |
pankso@37 | 19 --prefix=/usr \ |
pankso@37 | 20 --infodir=/usr/share/info \ |
pankso@37 | 21 --mandir=/usr/share/man \ |
pankso@37 | 22 --with-html-dir=/usr/share/doc \ |
pascal@1491 | 23 $CONFIGURE_ARGS && |
pascal@1491 | 24 make && |
pankso@37 | 25 make DESTDIR=$PWD/_pkg install |
pankso@37 | 26 } |
pankso@37 | 27 |
pankso@37 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@37 | 29 genpkg_rules() |
pankso@37 | 30 { |
pankso@37 | 31 mkdir -p $fs/usr/lib $fs/usr/share/locale |
pankso@37 | 32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@37 | 33 |
pankso@37 | 34 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
pankso@37 | 35 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share |
pankso@37 | 36 |
pankso@37 | 37 strip -s $fs/usr/lib/* |
pankso@37 | 38 } |
pankso@37 | 39 |