wok view sg3_utils/receipt @ rev 21879

Add borgbackup py3k-cython py3k-setuptools_scm
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 29 11:57:57 2019 +0200 (2019-09-29)
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 }