wok view libstatgrab/receipt @ rev 14739

libgnomecanvasmm, libglademm: fix for the new gtkmm
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 14 08:11:47 2013 +0200 (2013-06-14)
parents 6eff489aa802
children 23b382a886ad
line source
1 # SliTaz package receipt.
3 PACKAGE="libstatgrab"
4 VERSION="0.17"
5 CATEGORY="system-tools"
6 SHORT_DESC="Provides statistics about the system on which it's run."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.i-scream.org/libstatgrab/"
11 WGET_URL="http://ftp.uk.i-scream.org/pub/i-scream/libstatgrab/$TARBALL"
13 DEPENDS="ncursesw"
14 BUILD_DEPENDS="ncursesw-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure &&
21 make && make -j 1 install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 }