wok annotate lsof/receipt @ rev 23143

updated lsof (4.91 -> 4.93.2)
author Hans-G?nter Theisgen
date Sun Mar 15 08:17:07 2020 +0100 (2020-03-15)
parents e6a4cd87fdcb
children 5ea0ce1cecc0
rev   line source
pascal@2444 1 # SliTaz package receipt.
pascal@2444 2
pascal@2444 3 PACKAGE="lsof"
Hans-G?nter@23143 4 VERSION="4.93.2"
pascal@2444 5 CATEGORY="system-tools"
Hans-G?nter@21379 6 SHORT_DESC="List open files."
pascal@2444 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15472 8 LICENSE="BSD"
Hans-G?nter@23143 9 WEB_SITE="https://github.com/lsof-org/lsof/"
Hans-G?nter@21379 10
Hans-G?nter@23143 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@23143 12 WGET_URL="${WEB_SITE}archive/$VERSION.tar.gz"
pascal@2444 13
pascal@2444 14 # Rules to configure and make the package.
pascal@2444 15 compile_rules()
pascal@2444 16 {
Hans-G?nter@23143 17 # if [ ! -d ${PACKAGE}_${VERSION}_src ]; then
Hans-G?nter@23143 18 # tar xf ${PACKAGE}_${VERSION}_src.tar
Hans-G?nter@23143 19 # fi
Hans-G?nter@23143 20 # cd ${PACKAGE}_${VERSION}_src
Hans-G?nter@23143 21
pascal@2444 22 yes '' | ./Configure linux &&
pascal@2444 23 make
pascal@2444 24 }
pascal@2444 25
pascal@2444 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2444 27 genpkg_rules()
pascal@2444 28 {
pascal@2444 29 mkdir -p $fs/usr/bin
Hans-G?nter@23143 30 cp $src/lsof $fs/usr/bin
pascal@2444 31 }