# SliTaz package receipt.

PACKAGE="lsscsi"
VERSION="0.21"
CATEGORY="system-tools"
SHORT_DESC="Lists information about SCSI devices."
MAINTAINER="erjo@slitaz.org"
TARBALL="$PACKAGE-$VERSION.tgz"
WEB_SITE="http://sg.danny.cz/scsi/lsscsi.html"
WGET_URL="http://sg.danny.cz/scsi/$TARBALL"
#WGET_URL="http://www.sfr-fresh.com/linux/misc/$TARBALL"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	./configure --prefix=/usr $CONFIGURE_ARGS &&
	make
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr/bin
	cp -a $src/$PACKAGE $fs/usr/bin
}