wok view lsof/receipt @ rev 21187

created recipe for libcdio-paranoia
author Hans-G?nter Theisgen
date Wed Apr 03 15:43:41 2019 +0100 (2019-04-03)
parents 6c3718ca17b6
children fb25b46e9063
line source
1 # SliTaz package receipt.
3 PACKAGE="lsof"
4 VERSION="4.84"
5 CATEGORY="system-tools"
6 SHORT_DESC="list open files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="${PACKAGE}_$VERSION.tar.bz2"
10 WEB_SITE="https://people.freebsd.org/~abe/"
11 WGET_URL="ftp://lsof.itap.purdue.edu/pub/tools/unix/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 mv ${PACKAGE}_${VERSION} $src 2> /dev/null
17 cd $src
18 if [ ! -d ${PACKAGE}_${VERSION}_src ]; then
19 tar xf ${PACKAGE}_${VERSION}_src.tar
20 fi
21 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/${PACKAGE}_${VERSION}_src/lsof $fs/usr/bin
31 }