wok annotate lsscsi/receipt @ rev 893

tazlito: include tazlitobox in the package
author Christophe Lincoln <pankso@slitaz.org>
date Tue Jun 10 01:24:16 2008 +0200 (2008-06-10)
parents 6a9428a46323
children f86919dd94e7
rev   line source
erjo@621 1 # SliTaz package receipt.
erjo@621 2
erjo@621 3 PACKAGE="lsscsi"
erjo@621 4 VERSION="0.19"
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"
erjo@621 11 WGET_URL="http://sg.torque.net/scsi/$TARBALL"
erjo@621 12
erjo@621 13 # Rules to configure and make the package.
erjo@621 14 compile_rules()
erjo@621 15 {
erjo@621 16 cd $src
erjo@621 17 ./configure --prefix=/usr $CONFIGURE_ARGS
erjo@621 18 make
erjo@621 19 }
erjo@621 20
erjo@621 21 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@621 22 genpkg_rules()
erjo@621 23 {
erjo@621 24 mkdir -p $fs/usr
erjo@621 25 cp -a $src/$PACKAGE $fs/usr
erjo@621 26 }
erjo@621 27