wok view libsigc++/receipt @ rev 3029

Up: dnsmasq (2.47)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue May 12 02:01:41 2009 +0200 (2009-05-12)
parents cf22fee17710
children 3219146fdecd
line source
1 # SliTaz package receipt.
3 PACKAGE="libsigc++"
4 VERSION="2.0.18"
5 CATEGORY="system-tools"
6 SHORT_DESC="Callback Framework for C++"
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://libsigc.sourceforge.net/"
10 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.0/$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 # clean wok
32 rm $WOK/$PACKAGE/classsigc_* 2> /dev/null
33 rm $WOK/$PACKAGE/struct* 2> /dev/null
34 }