wok view lsof/receipt @ rev 23823

created recipes for qt5 packages
author Hans-G?nter Theisgen
date Thu May 28 10:56:20 2020 +0100 (2020-05-28)
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 }