wok view libsigc++/receipt @ rev 15461

Up: enlightenment-backgrounds (0.17.5)
author Dominique Corbex <domcox@slitaz.org>
date Tue Nov 05 20:58:44 2013 +0100 (2013-11-05)
parents df3c83ee7366
children 7d672a2330b8
line source
1 # SliTaz package receipt.
3 PACKAGE="libsigc++"
4 VERSION="2.2.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="Callback Framework for C++"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://libsigc.sourceforge.net/"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
13 BUILD_DEPENDS="m4"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make &&
23 make 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 $install/usr/lib/*.so* $fs/usr/lib
31 }