wok view gtkmm/receipt @ rev 1339

slitaz-loram*: fix mount options for funionfs and cromfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 31 16:20:22 2008 +0000 (2008-08-31)
parents ccf126429a43
children 52dc4b48ed81
line source
1 # SliTaz package receipt.
3 PACKAGE="gtkmm"
4 VERSION="2.12.7"
5 CATEGORY="x-window"
6 SHORT_DESC="C++ interface for the popular GUI library GTK+."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ glibmm cairomm"
9 BUILD_DEPENDS="gtk+-dev glibmm-dev cairomm-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gtkmm.org/"
12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/gtkmm/2.12/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg 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 $_pkg/usr/lib/*.so* $fs/usr/lib
32 strip -s $fs/usr/lib/*
33 }
35 clean_wok()
36 {
37 rm -f $WOK/$PACKAGE/classGtk_*
38 rm -f $WOK/$PACKAGE/gtk-orientation*
39 }