wok view libgsf/receipt @ rev 1189

libsdl-*-dev: WANTED with correct name
author Christophe Lincoln <pankso@slitaz.org>
date Mon Aug 04 16:31:19 2008 +0200 (2008-08-04)
parents
children f2ac2fef342c
line source
1 # SliTaz package receipt.
3 PACKAGE="libgsf"
4 VERSION="1.14.8"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME Structured File Library."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://freshmeat.net/projects/libgsf/"
11 WGET_URL="http://freshmeat.net/redir/libgsf/32571/url_tgz/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man \
20 --with-html-dir=/usr/share/doc \
21 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 cp -a $_pkg/usr/bin $fs/usr
32 }