wok annotate sg3_utils/receipt @ rev 23799

created recipes for xcb-util-xrm and xcb-util-xrm-dev
author Hans-G?nter Theisgen
date Sun May 24 07:04:55 2020 +0100 (2020-05-24)
parents 10e6c72b2c15
children 934055de50e2
rev   line source
pankso@12479 1 # SliTaz package receipt.
pankso@12479 2
pankso@12479 3 PACKAGE="sg3_utils"
Hans-G?nter@23641 4 VERSION="1.45"
pankso@12479 5 CATEGORY="system-tools"
pankso@12479 6 SHORT_DESC="Low level utilities for devices that use a SCSI command set."
pankso@12479 7 MAINTAINER="pankso@slitaz.org"
pascal@15021 8 LICENSE="GPL BSD"
Hans-G?nter@23641 9 WEB_SITE="http://sg.danny.cz/sg/"
Hans-G?nter@23641 10
pankso@12479 11 TARBALL="$PACKAGE-$VERSION.tgz"
Hans-G?nter@23641 12 WGET_URL="${WEB_SITE}p/$TARBALL"
pankso@12479 13
pankso@12479 14 DEPENDS="libsgutils2"
pankso@12479 15 BUILD_DEPENDS=""
pankso@12479 16
pankso@12479 17 # Rules to configure and make the package.
pankso@12479 18 compile_rules()
pankso@12479 19 {
Hans-G?nter@23641 20 ./configure \
pankso@12479 21 $CONFIGURE_ARGS &&
Hans-G?nter@23641 22 make &&
Hans-G?nter@23641 23 make install
pankso@12479 24 }
pankso@12479 25
pankso@12479 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@12479 27 genpkg_rules()
pankso@12479 28 {
pankso@12479 29 mkdir -p $fs/usr/lib
Hans-G?nter@23641 30
Hans-G?nter@23641 31 cp -a $install/usr/bin $fs/usr
Hans-G?nter@23641 32 [ -x "/usr/bin/cook" ] &&
Hans-G?nter@23641 33 cook libsgutils2
pankso@12479 34 }