wok annotate lshw/receipt @ rev 9404
Up: slitaz-mercurial-style to 1.0.7. You didn't tag. Also no need for high jumps since it will make everything else 2.0.x for linearer versioning.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Mar 27 18:50:59 2011 +0000 (2011-03-27) |
parents | 964f5d384827 |
children | 02bbaa9d12ba |
rev | line source |
---|---|
erjo@506 | 1 # SliTaz package receipt. |
erjo@506 | 2 |
erjo@506 | 3 PACKAGE="lshw" |
slaxemulator@6648 | 4 VERSION="B.02.15" |
erjo@506 | 5 CATEGORY="system-tools" |
erjo@506 | 6 SHORT_DESC="Hardware Lister" |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@5003 | 8 DEPENDS="gcc-lib-base" |
erjo@506 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@506 | 10 WEB_SITE="http://ezix.org/project/wiki/HardwareLiSter" |
erjo@506 | 11 WGET_URL="http://ezix.org/software/files/$TARBALL" |
erjo@506 | 12 |
erjo@506 | 13 # Rules to configure and make the package. |
erjo@506 | 14 compile_rules() |
erjo@506 | 15 { |
erjo@4280 | 16 |
erjo@4280 | 17 |
erjo@506 | 18 cd $src |
pascal@5732 | 19 sed -i 's/hwNode::hwNode/hwNode/' src/core/scsi.cc |
pascal@6113 | 20 grep -qs 'define u8' src/core/scsi.cc src/core/burner.cc || |
pascal@6113 | 21 sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' \ |
pascal@6113 | 22 src/core/scsi.cc src/core/burner.cc |
pascal@5003 | 23 make && |
erjo@506 | 24 make DESTDIR=$PWD/_pkg install |
erjo@506 | 25 } |
erjo@506 | 26 |
erjo@506 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@506 | 28 genpkg_rules() |
erjo@506 | 29 { |
erjo@506 | 30 mkdir -p $fs/usr/share |
erjo@506 | 31 cp -a $_pkg/usr/sbin $fs/usr |
erjo@506 | 32 cp -a $_pkg/usr/share/lshw $fs/usr/share |
erjo@506 | 33 |
erjo@506 | 34 strip -s $fs/usr/sbin/* |
erjo@506 | 35 } |
erjo@506 | 36 |