wok view sg3_utils/receipt @ rev 15481

Add memtester
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 10 15:03:57 2013 +0000 (2013-11-10)
parents 80a234c03f35
children 598e8c4f7768
line source
1 # SliTaz package receipt.
3 PACKAGE="sg3_utils"
4 VERSION="1.29"
5 CATEGORY="system-tools"
6 SHORT_DESC="Low level utilities for devices that use a SCSI command set."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL BSD"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="http://sg.danny.cz/sg/"
11 WGET_URL="http://sg.danny.cz/sg/p/$TARBALL"
13 DEPENDS="libsgutils2"
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 [ -x "/usr/bin/cook" ] && cook libsgutils2
31 }