wok view goocanvas/receipt @ rev 20675

iron: update /usr/bin/iron symlink
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 22:11:16 2019 +0100 (2019-01-24)
parents 380ffe05937a
children c59c2834e80e
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/${VERSION%.*}/$TARBALL"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }