wok view lsof/receipt @ rev 22339

qt4-examples: fix previous commit
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 15 18:53:02 2019 +0100 (2019-11-15)
parents fb25b46e9063
children 6129a0039d18
line source
1 # SliTaz package receipt.
3 PACKAGE="lsof"
4 VERSION="4.91"
5 CATEGORY="system-tools"
6 SHORT_DESC="List open files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://people.freebsd.org/~abe/"
11 TARBALL="${PACKAGE}_$VERSION.tar.bz2"
12 WGET_URL="https://fossies.org/linux/misc/$TARBALL"
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
21 yes '' | ./Configure linux &&
22 make
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp $src/${PACKAGE}_${VERSION}_src/lsof $fs/usr/bin
30 }