wok view lsof/receipt @ rev 23649

Up openvpn (2.4.9)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 20 13:31:36 2020 +0000 (2020-04-20)
parents e6a4cd87fdcb
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="lsof"
4 VERSION="4.93.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="List open files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/lsof-org/lsof/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}archive/$VERSION.tar.gz"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 # if [ ! -d ${PACKAGE}_${VERSION}_src ]; then
18 # tar xf ${PACKAGE}_${VERSION}_src.tar
19 # fi
20 # cd ${PACKAGE}_${VERSION}_src
22 yes '' | ./Configure linux &&
23 make
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 cp $src/lsof $fs/usr/bin
31 }