wok view lsof/receipt @ rev 15969

openssl: up to 1.0.1f + add to ARM arch (almost rewrite receipt)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Feb 24 23:42:48 2014 +0100 (2014-02-24)
parents 95882644e965
children a78610b2eb47
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="http://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 }