wok annotate libgsf/receipt @ rev 5187

syslinux: msg for 3.0 and up splash image
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 28 00:46:39 2010 +0100 (2010-03-28)
parents 7917cbf0c6af
children fb77c7188b05
rev   line source
pankso@563 1 # SliTaz package receipt.
pankso@563 2
pankso@563 3 PACKAGE="libgsf"
pascal@1496 4 VERSION="1.14.9"
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"
pascal@1496 9 BUILD_DEPENDS="libgio libgio-dev"
pankso@563 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@563 11 WEB_SITE="http://freshmeat.net/projects/libgsf/"
pascal@2503 12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/libgsf/${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 --prefix=/usr \
pankso@563 20 --mandir=/usr/share/man \
pankso@563 21 --with-html-dir=/usr/share/doc \
pankso@2537 22 --without-bonobo \
pankso@2537 23 --without-gnome-vfs \
pankso@2537 24 --without-python \
pascal@1496 25 $CONFIGURE_ARGS &&
pascal@1496 26 make &&
pankso@563 27 make DESTDIR=$PWD/_pkg install
pankso@563 28 }
pankso@563 29
pankso@563 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@563 31 genpkg_rules()
pankso@563 32 {
pankso@563 33 mkdir -p $fs/usr/lib
pankso@563 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@563 35 cp -a $_pkg/usr/bin $fs/usr
pankso@563 36 }
pankso@563 37