wok annotate hardinfo/receipt @ rev 11388

Fix: allow the removal of slitaz-boot-scripts
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Dec 10 04:50:27 2011 +0100 (2011-12-10)
parents 0b4cf0d9e1b5
children 1ae5963f23df
rev   line source
pankso@518 1 # SliTaz package receipt.
pankso@518 2
pankso@518 3 PACKAGE="hardinfo"
slaxemulator@6223 4 VERSION="0.5.1"
pankso@518 5 CATEGORY="system-tools"
pankso@518 6 SHORT_DESC="A tool to get hardware informations and perform benchmarks."
pankso@518 7 MAINTAINER="pankso@slitaz.org"
pascal@2517 8 DEPENDS="gtk+ pciutils xorg-libXdamage"
pascal@1511 9 BUILD_DEPENDS="gtk+ gtk+-dev"
pankso@518 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@518 11 WEB_SITE="http://hardinfo.berlios.de/"
pankso@518 12 WGET_URL="http://download.berlios.de/hardinfo/$TARBALL"
pankso@518 13
pankso@518 14 # Rules to configure and make the package.
pankso@518 15 compile_rules()
pankso@518 16 {
pankso@518 17 cd $src
pascal@726 18 while read file; do
pascal@1442 19 [ -f done.$file ] && continue
slaxemulator@9700 20 patch -p0 < $stuff/$file || return 1
pascal@1442 21 touch done.$file
pascal@726 22 done <<EOT
pascal@726 23 languages.patch
pascal@726 24 os.patch
pascal@726 25 EOT
pankso@518 26 ./configure \
pankso@518 27 --prefix=/usr \
pascal@1442 28 $CONFIGURE_ARGS &&
pascal@1442 29 make &&
pankso@518 30 make DESTDIR=$PWD/_pkg install
pankso@518 31 }
pankso@518 32
pankso@518 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@518 34 genpkg_rules()
pankso@518 35 {
pankso@760 36 mkdir -p $fs/usr/lib/$PACKAGE/modules $fs/usr/share/pixmaps
pankso@518 37 cp -a $_pkg/usr/bin $fs/usr
pankso@518 38 cp -a $src/*.so $fs/usr/lib/$PACKAGE/modules
pankso@518 39 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
pankso@760 40 cd $fs/usr/share/pixmaps
slaxemulator@6223 41 rm ../$PACKAGE/pixmaps/logo.xcf
pankso@760 42 ln -s ../$PACKAGE/pixmaps/logo.png hardinfo.png
pankso@518 43 }
pankso@518 44