wok view libsigc++/receipt @ rev 9804

usbutils: fix build by using latest version from kernel.org
author Christophe Lincoln <pankso@slitaz.org>
date Sat May 14 19:44:44 2011 +0200 (2011-05-14)
parents 2f0217389f28
children b33423de19b3
line source
1 # SliTaz package receipt.
3 PACKAGE="libsigc++"
4 VERSION="2.2.8"
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 --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 }