wok-next annotate 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
rev   line source
al@20624 1 # SliTaz package receipt v2.
pascal@2444 2
pascal@2444 3 PACKAGE="lsof"
al@20624 4 VERSION="4.91"
pascal@2444 5 CATEGORY="system-tools"
al@20624 6 SHORT_DESC="Lists open files for running Unix processes"
pascal@2444 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15472 8 LICENSE="BSD"
al@20624 9 WEB_SITE="https://people.freebsd.org/~abe/"
al@20624 10
pascal@5786 11 TARBALL="${PACKAGE}_$VERSION.tar.bz2"
al@20624 12 WGET_URL="ftp://ftp.fu-berlin.de/pub/unix/tools/lsof/$TARBALL"
pascal@2444 13
al@20624 14 BUILD_DEPENDS="perl"
al@20624 15
al@20624 16 compile_rules() {
al@20624 17 tar xf ${PACKAGE}_${VERSION}_src.tar
pascal@2444 18 cd ${PACKAGE}_${VERSION}_src
al@20624 19
pascal@2444 20 yes '' | ./Configure linux &&
al@20624 21 make -j1 || return 1
al@20624 22
al@20624 23 install -Dm755 $src/${PACKAGE}_${VERSION}_src/lsof $install/usr/bin/lsof
al@20624 24 cook_pick_manpages $src/${PACKAGE}_${VERSION}_src/lsof.8
pascal@2444 25 }
pascal@2444 26
al@20624 27 genpkg_rules() {
al@20624 28 copy @std
pascal@2444 29 }