wok annotate lsscsi/receipt @ rev 20497

updated diffutils (3.3 -> 3.6)
author Hans-G?nter Theisgen
date Mon Oct 29 16:27:52 2018 +0100 (2018-10-29)
parents 6dc66b3c34a2
children a5e3dd4b5d74
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"
pascal@15379 8 LICENSE="GPL2"
erjo@621 9 TARBALL="$PACKAGE-$VERSION.tgz"
pascal@2559 10 WEB_SITE="http://sg.danny.cz/scsi/lsscsi.html"
pascal@2559 11 WGET_URL="http://sg.danny.cz/scsi/$TARBALL"
pascal@2559 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 {
pankso@3483 25 mkdir -p $fs/usr/bin
pankso@3483 26 cp -a $src/$PACKAGE $fs/usr/bin
erjo@621 27 }
erjo@621 28