wok view goocanvas/receipt @ rev 15401

Up: lvm2 (2.02.98)
author Dominique Corbex <domcox@slitaz.org>
date Sat Nov 02 21:26:53 2013 +0100 (2013-11-02)
parents 5d82e62b9b12
children d3eb5f4b53ea
line source
1 # SliTaz package receipt.
3 PACKAGE="goocanvas"
4 VERSION="1.0.0"
5 CATEGORY="x-window"
6 SHORT_DESC="A cairo canvas widget for GTK+"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://live.gnome.org/GooCanvas"
11 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/1.0/$TARBALL"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }