wok view libgsf/receipt @ rev 6697

Up: inkscape (0.47 => 0.48.0)
author Ben Arnold <ben@seawolfsanctuary.com>
date Wed Oct 13 13:52:26 2010 +0100 (2010-10-13)
parents fb77c7188b05
children 5ab5ab1b7f51
line source
1 # SliTaz package receipt.
3 PACKAGE="libgsf"
4 VERSION="1.14.18"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME Structured File Library."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ bzlib"
9 BUILD_DEPENDS="libgio libgio-dev intltool pkg-config glib-dev libxml2-dev zlib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://freshmeat.net/projects/libgsf/"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/libgsf/${VERSION%.*}/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 --with-html-dir=/usr/share/doc \
22 --without-bonobo \
23 --without-gnome-vfs \
24 --without-python \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/bin $fs/usr
36 }