wok-6.x annotate hardinfo/receipt @ rev 7131
Up: linux to 2.6.36. Added fixes for aufs to compile.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Nov 05 15:48:33 2010 +0000 (2010-11-05) |
parents | be4b9618ea05 |
children | 0b4cf0d9e1b5 |
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 |
pascal@726 | 20 patch -p0 < ../stuff/$file || exit 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 |