wok annotate usbutils/receipt @ rev 621

Add: lsdvd, libdvdread, lidvdread-dev, libdvdcss, libdvdcss-dev, usbutils, smartmontools, dmidecode, ddrecue, dd_recue, lsscsi
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Apr 20 02:19:09 2008 +0200 (2008-04-20)
parents
children 7ccdeadb6ea4
rev   line source
erjo@621 1 # SliTaz package receipt.
erjo@621 2
erjo@621 3 PACKAGE="usbutils"
erjo@621 4 VERSION="0.73"
erjo@621 5 CATEGORY="system-tools"
erjo@621 6 SHORT_DESC="Displaying information about USB."
erjo@621 7 MAINTAINER="Erjo <erjo@slitaz.org>"
erjo@621 8 DEPENDS=""
erjo@621 9 BUILD_DEPENDS="libusb-dev"
erjo@621 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@621 11 WEB_SITE="http://linux-usb.sourceforge.net/"
erjo@621 12 WGET_URL="http://dfn.dl.sourceforge.net/sourceforge/linux-usb/$TARBALL
erjo@621 13 http://surfnet.dl.sourceforge.net/sourceforge/linux-usb/$TARBALL"
erjo@621 14
erjo@621 15 # Rules to configure and make the package.
erjo@621 16 compile_rules()
erjo@621 17 {
erjo@621 18 cd $src
erjo@621 19 ./configure --prefix=/usr $CONFIGURE_ARGS
erjo@621 20 make
erjo@621 21 make DESTDIR=$PWD/_pkg install
erjo@621 22 }
erjo@621 23
erjo@621 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@621 25 genpkg_rules()
erjo@621 26 {
erjo@621 27 mkdir -p $fs/usr/share
erjo@621 28 cp -a $_pkg/usr/sbin $fs/usr
erjo@621 29 cp -a $_pkg/usr/share/*.gz $fs/usr/share
erjo@621 30 strip -s $fs/usr/sbin/*
erjo@621 31 }
erjo@621 32