wok view libsigc++/receipt @ rev 10264

Up: gnustep-base to 1.22.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 21 04:46:16 2011 +0000 (2011-05-21)
parents 78fc4576a8f9
children eb512922693f
line source
1 # SliTaz package receipt.
3 PACKAGE="libsigc++"
4 VERSION="2.2.9"
5 CATEGORY="system-tools"
6 SHORT_DESC="Callback Framework for C++"
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="m4"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://libsigc.sourceforge.net/"
11 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 $CONFIGURE_ARGS &&
19 make &&
20 make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 }