wok view glibmm/receipt @ rev 575

Add: ctorrent (ssl/transmission out of core)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 15 00:09:52 2008 +0200 (2008-04-15)
parents ccf126429a43
children d9b115e6e229
line source
1 # SliTaz package receipt.
3 PACKAGE="glibmm"
4 VERSION="2.8.16"
5 CATEGORY="x-window"
6 SHORT_DESC="C++ interface for the popular GUI library GTK+."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gtkmm.org/"
10 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.8/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 strip -s $fs/usr/lib/*
31 }