wok view libgsf/receipt @ rev 3289

Update Depends: wxWidgets and xorg-libXdamage
author Matthew Sheets <rcx@zoominternet.net>
date Wed Jun 03 11:07:10 2009 +0000 (2009-06-03)
parents 7917cbf0c6af
children fb77c7188b05
line source
1 # SliTaz package receipt.
3 PACKAGE="libgsf"
4 VERSION="1.14.9"
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"
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 }