wok view goocanvas/receipt @ rev 17769

compiz-libcompizconfig: cmake 3.1 seems need CMAKE_MINIMUM_REQUIRED_VERSION
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 13 17:47:05 2015 +0100 (2015-03-13)
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 }