wok view gtkmm/receipt @ rev 153

Add JWM_MENU infos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 26 19:03:45 2008 +0100 (2008-01-26)
parents
children ccf126429a43
line source
1 # SliTaz package receipt.
3 PACKAGE="gtkmm"
4 VERSION="2.8.12"
5 CATEGORY="extra"
6 SHORT_DESC="C++ interface for the popular GUI library GTK+."
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="gtk+-dev glibmm-dev"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gtkmm.org/"
11 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/gtkmm/2.8/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 strip -s $fs/usr/lib/*
32 # clean wok
33 rm $WOK/$PACKAGE/classGtk_*
34 }