wok annotate lsscsi/receipt @ rev 1988
Fix: udev rules missing in /etc/ude/rules.d
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Tue Jan 06 13:01:01 2009 +0100 (2009-01-06) |
parents | a075ff895254 |
children | 8e44b7502050 |
rev | line source |
---|---|
erjo@621 | 1 # SliTaz package receipt. |
erjo@621 | 2 |
erjo@621 | 3 PACKAGE="lsscsi" |
pascal@1498 | 4 VERSION="0.21" |
erjo@621 | 5 CATEGORY="system-tools" |
erjo@621 | 6 SHORT_DESC="Lists information about SCSI devices." |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@621 | 8 DEPENDS="" |
erjo@621 | 9 TARBALL="$PACKAGE-$VERSION.tgz" |
erjo@621 | 10 WEB_SITE="http://sg.torque.net/scsi/lsscsi.html" |
pascal@1498 | 11 #WGET_URL="http://sg.torque.net/scsi/$TARBALL" |
pascal@1498 | 12 WGET_URL="http://www.sfr-fresh.com/linux/misc/$TARBALL" |
erjo@621 | 13 |
erjo@621 | 14 # Rules to configure and make the package. |
erjo@621 | 15 compile_rules() |
erjo@621 | 16 { |
erjo@621 | 17 cd $src |
pascal@1498 | 18 ./configure --prefix=/usr $CONFIGURE_ARGS && |
erjo@621 | 19 make |
erjo@621 | 20 } |
erjo@621 | 21 |
erjo@621 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@621 | 23 genpkg_rules() |
erjo@621 | 24 { |
erjo@621 | 25 mkdir -p $fs/usr |
erjo@621 | 26 cp -a $src/$PACKAGE $fs/usr |
erjo@621 | 27 } |
erjo@621 | 28 |