wok-next annotate libgsf/receipt @ rev 13225
fail2ban: add fail2ban filter
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Aug 13 19:15:01 2012 +0200 (2012-08-13) |
parents | 5ab5ab1b7f51 |
children | 4904e3d374a9 |
rev | line source |
---|---|
pankso@563 | 1 # SliTaz package receipt. |
pankso@563 | 2 |
pankso@563 | 3 PACKAGE="libgsf" |
slaxemulator@10106 | 4 VERSION="1.14.21" |
pankso@563 | 5 CATEGORY="x-window" |
pankso@563 | 6 SHORT_DESC="GNOME Structured File Library." |
pankso@563 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@2477 | 8 DEPENDS="gtk+ bzlib" |
slaxemulator@6245 | 9 BUILD_DEPENDS="libgio libgio-dev intltool pkg-config glib-dev libxml2-dev zlib-dev" |
pankso@563 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@563 | 11 WEB_SITE="http://freshmeat.net/projects/libgsf/" |
slaxemulator@10106 | 12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" |
pankso@563 | 13 |
pankso@563 | 14 # Rules to configure and make the package. |
pankso@563 | 15 compile_rules() |
pankso@563 | 16 { |
pankso@563 | 17 cd $src |
pankso@563 | 18 ./configure \ |
pankso@563 | 19 --with-html-dir=/usr/share/doc \ |
pankso@2537 | 20 --without-bonobo \ |
pankso@2537 | 21 --without-gnome-vfs \ |
pankso@2537 | 22 --without-python \ |
pascal@1496 | 23 $CONFIGURE_ARGS && |
pascal@1496 | 24 make && |
slaxemulator@10106 | 25 make install |
pankso@563 | 26 } |
pankso@563 | 27 |
pankso@563 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@563 | 29 genpkg_rules() |
pankso@563 | 30 { |
pankso@563 | 31 mkdir -p $fs/usr/lib |
pankso@563 | 32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@563 | 33 cp -a $_pkg/usr/bin $fs/usr |
pankso@563 | 34 } |
pankso@563 | 35 |