wok view libgsf/receipt @ rev 15413

Up: thunderbird-langpack-de (17.0.9esr)
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 03 21:52:33 2013 +0100 (2013-11-03)
parents f5102480f2bc
children e2dc7c2d000d
line source
1 # SliTaz package receipt.
3 PACKAGE="libgsf"
4 VERSION="1.14.21"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME Structured File Library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://freshmeat.net/projects/libgsf/"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="gtk+ bzlib"
14 BUILD_DEPENDS="libgio libgio-dev intltool pkg-config glib-dev libxml2-dev zlib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --with-html-dir=/usr/share/doc \
22 --without-bonobo \
23 --without-gnome-vfs \
24 --without-python \
25 $CONFIGURE_ARGS &&
26 make &&
27 make 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 $install/usr/lib/*.so* $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 }