wok view gsmartcontrol/receipt @ rev 9264

unfs3: fix BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 15 12:26:04 2011 +0100 (2011-03-15)
parents ec092c48d554
children 3a37bcf4ef92
line source
1 # SliTaz package receipt.
3 PACKAGE="gsmartcontrol"
4 VERSION="0.8.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="Hard disk drive health inspection tool (GUI for smartctl)."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 DEPENDS="pcre gtk+ gtkmm smartmontools gcc-lib-base"
10 BUILD_DEPENDS="pcre-dev gtk+-dev gtkmm-dev"
11 WEB_SITE="http://gsmartcontrol.berlios.de/"
12 WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $_pkg/usr/bin/gsmartcontrol $fs/usr/bin
28 }