wok-current annotate hardinfo/receipt @ rev 1442
linux lzma hardinfo etherboot mISDN busybox: apply path once
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Oct 02 16:39:02 2008 +0000 (2008-10-02) |
parents | 307f8bb243e3 |
children | 3d99ecce2d4b |
rev | line source |
---|---|
pankso@518 | 1 # SliTaz package receipt. |
pankso@518 | 2 |
pankso@518 | 3 PACKAGE="hardinfo" |
pankso@518 | 4 VERSION="0.4.2.3" |
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" |
pankso@518 | 8 DEPENDS="gtk+ pciutils" |
pankso@518 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@518 | 10 WEB_SITE="http://hardinfo.berlios.de/" |
pankso@518 | 11 WGET_URL="http://download.berlios.de/hardinfo/$TARBALL" |
pankso@518 | 12 |
pankso@518 | 13 # Rules to configure and make the package. |
pankso@518 | 14 compile_rules() |
pankso@518 | 15 { |
pankso@518 | 16 cd $src |
pascal@726 | 17 while read file; do |
pascal@1442 | 18 [ -f done.$file ] && continue |
pascal@726 | 19 patch -p0 < ../stuff/$file || exit 1 |
pascal@1442 | 20 touch done.$file |
pascal@726 | 21 done <<EOT |
pascal@726 | 22 modules.patch |
pascal@726 | 23 users.patch |
pascal@726 | 24 languages.patch |
pascal@726 | 25 boots.patch |
pascal@726 | 26 os.patch |
pascal@726 | 27 EOT |
pankso@518 | 28 ./configure \ |
pankso@518 | 29 --prefix=/usr \ |
pascal@1442 | 30 $CONFIGURE_ARGS && |
pascal@1442 | 31 make && |
pankso@518 | 32 make DESTDIR=$PWD/_pkg install |
pankso@518 | 33 } |
pankso@518 | 34 |
pankso@518 | 35 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@518 | 36 genpkg_rules() |
pankso@518 | 37 { |
pankso@760 | 38 mkdir -p $fs/usr/lib/$PACKAGE/modules $fs/usr/share/pixmaps |
pankso@518 | 39 cp -a $_pkg/usr/bin $fs/usr |
pankso@518 | 40 cp -a $src/*.so $fs/usr/lib/$PACKAGE/modules |
pankso@518 | 41 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share |
pankso@760 | 42 cd $fs/usr/share/pixmaps |
pankso@760 | 43 rm ../$PACKAGE/pixmaps/logo.svg |
pankso@760 | 44 ln -s ../$PACKAGE/pixmaps/logo.png hardinfo.png |
pankso@518 | 45 } |
pankso@518 | 46 |