wok-next view lsof/receipt @ rev 20624

Up lsof (4.91), granite (0.5), tumbler (fix: disable gtk-doc, update deps)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 26 03:40:57 2018 +0300 (2018-04-26)
parents 6c3718ca17b6
children b1a1deb20f42
line source
1 # SliTaz package receipt v2.
3 PACKAGE="lsof"
4 VERSION="4.91"
5 CATEGORY="system-tools"
6 SHORT_DESC="Lists open files for running Unix processes"
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="ftp://ftp.fu-berlin.de/pub/unix/tools/lsof/$TARBALL"
14 BUILD_DEPENDS="perl"
16 compile_rules() {
17 tar xf ${PACKAGE}_${VERSION}_src.tar
18 cd ${PACKAGE}_${VERSION}_src
20 yes '' | ./Configure linux &&
21 make -j1 || return 1
23 install -Dm755 $src/${PACKAGE}_${VERSION}_src/lsof $install/usr/bin/lsof
24 cook_pick_manpages $src/${PACKAGE}_${VERSION}_src/lsof.8
25 }
27 genpkg_rules() {
28 copy @std
29 }