wok annotate hardinfo/receipt @ rev 1119
Add xruskb (keyboard switcher) - Need more X11 fonts
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Jul 20 19:25:43 2008 +0200 (2008-07-20) |
parents | 3364afe06006 |
children | e64f8e87ea6d |
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@726 | 18 patch -p0 < ../stuff/$file || exit 1 |
pascal@726 | 19 done <<EOT |
pascal@726 | 20 modules.patch |
pascal@726 | 21 users.patch |
pascal@726 | 22 languages.patch |
pascal@726 | 23 boots.patch |
pascal@726 | 24 os.patch |
pascal@726 | 25 EOT |
pankso@518 | 26 ./configure \ |
pankso@518 | 27 --prefix=/usr \ |
pankso@518 | 28 $CONFIGURE_ARGS |
pankso@518 | 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 |
pankso@760 | 41 rm ../$PACKAGE/pixmaps/logo.svg |
pankso@760 | 42 ln -s ../$PACKAGE/pixmaps/logo.png hardinfo.png |
pankso@518 | 43 } |
pankso@518 | 44 |