wok annotate 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
rev   line source
pascal@2444 1 # SliTaz package receipt.
pascal@2444 2
pascal@2444 3 PACKAGE="lsof"
Hans-G?nter@21379 4 VERSION="4.91"
pascal@2444 5 CATEGORY="system-tools"
Hans-G?nter@21379 6 SHORT_DESC="List open files."
pascal@2444 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15472 8 LICENSE="BSD"
Hans-G?nter@21379 9 WEB_SITE="https://people.freebsd.org/~abe/"
Hans-G?nter@21379 10
pascal@5786 11 TARBALL="${PACKAGE}_$VERSION.tar.bz2"
Hans-G?nter@21379 12 WGET_URL="https://fossies.org/linux/misc/$TARBALL"
pascal@2444 13
pascal@2444 14 # Rules to configure and make the package.
pascal@2444 15 compile_rules()
pascal@2444 16 {
pascal@2444 17 if [ ! -d ${PACKAGE}_${VERSION}_src ]; then
pascal@2444 18 tar xf ${PACKAGE}_${VERSION}_src.tar
pascal@2444 19 fi
pascal@2444 20 cd ${PACKAGE}_${VERSION}_src
pascal@2444 21 yes '' | ./Configure linux &&
pascal@2444 22 make
pascal@2444 23 }
pascal@2444 24
pascal@2444 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2444 26 genpkg_rules()
pascal@2444 27 {
pascal@2444 28 mkdir -p $fs/usr/bin
pascal@2444 29 cp $src/${PACKAGE}_${VERSION}_src/lsof $fs/usr/bin
pascal@2444 30 }