wok view libgnomecanvas/receipt @ rev 9993

hal-dev: add missing deps
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu May 19 00:45:38 2011 +0200 (2011-05-19)
parents e5ae411e1d8c
children d018c1db28ae
line source
1 # SliTaz package receipt.
3 PACKAGE="libgnomecanvas"
4 VERSION="2.30.2"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME canvas library"
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gnome.org/"
10 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="gtk+ libglade libart_lgpl xorg-libXdamage xorg-libXcursor"
13 BUILD_DEPENDS="gtk+-dev libglade-dev libart_lgpl-dev xorg-libXcursor-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --with-html-dir=/usr/share/doc \
24 --enable-glade \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib $fs/usr/share/locale
35 # Copy shared libs
36 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
37 cp -a $_pkg/usr/lib/libglade $fs/usr/lib
39 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
41 # Remove static libs
42 rm $fs/usr/lib/libglade/*/*.*a
43 }