wok-next view sg3_utils/receipt @ rev 20883

Check Repology info from h* to l* packages
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jul 11 02:06:34 2018 +0300 (2018-07-11)
parents 10df65db91ad
children cd7906120828
line source
1 # SliTaz package receipt v2.
3 PACKAGE="sg3_utils"
4 VERSION="1.42"
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 WEB_SITE="http://sg.danny.cz/sg/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/sg3_utils.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="http://sg.danny.cz/sg/p/$TARBALL"
15 SPLIT="libsgutils2 sg3_utils sg3_utils-dev"
17 compile_rules() {
18 ./configure \
19 --disable-static \
20 $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 libsgutils2)
29 copy libsgutils2.so*
30 CAT="system-tools|library"
31 ;;
32 sg3_utils)
33 copy @std @rm
34 DEPENDS="libsgutils2"
35 ;;
36 *-dev)
37 copy @dev
38 ;;
39 esac
40 }