wok view glibmm/receipt @ rev 837

Up: glibmm (2.16.2)
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 18 13:38:26 2008 +0200 (2008-05-18)
parents 4ee051f6ed87
children c94bfd9c3c73
line source
1 # SliTaz package receipt.
3 PACKAGE="glibmm"
4 VERSION="2.16.2"
5 CATEGORY="x-window"
6 SHORT_DESC="C++ interface for the popular GUI library GTK+."
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="libsigc++ libsigc++-dev"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gtkmm.org/"
11 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.16/$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 }