wok annotate lsof/receipt @ rev 20255

firefox, thunderbird: try to force i686
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 21:40:37 2018 +0100 (2018-03-13)
parents 95882644e965
children a78610b2eb47
rev   line source
pascal@2444 1 # SliTaz package receipt.
pascal@2444 2
pascal@2444 3 PACKAGE="lsof"
slaxemulator@6539 4 VERSION="4.84"
pascal@2444 5 CATEGORY="system-tools"
pascal@2444 6 SHORT_DESC="list open files."
pascal@2444 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15472 8 LICENSE="BSD"
pascal@5786 9 TARBALL="${PACKAGE}_$VERSION.tar.bz2"
pascal@2444 10 WEB_SITE="http://people.freebsd.org/~abe/"
pascal@2444 11 WGET_URL="ftp://lsof.itap.purdue.edu/pub/tools/unix/$PACKAGE/$TARBALL"
pascal@2444 12
pascal@2444 13 # Rules to configure and make the package.
pascal@2444 14 compile_rules()
pascal@2444 15 {
pascal@2444 16 mv ${PACKAGE}_${VERSION} $src 2> /dev/null
pascal@2444 17 cd $src
pascal@2444 18 if [ ! -d ${PACKAGE}_${VERSION}_src ]; then
pascal@2444 19 tar xf ${PACKAGE}_${VERSION}_src.tar
pascal@2444 20 fi
pascal@2444 21 cd ${PACKAGE}_${VERSION}_src
pascal@2444 22 yes '' | ./Configure linux &&
pascal@2444 23 make
pascal@2444 24 }
pascal@2444 25
pascal@2444 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2444 27 genpkg_rules()
pascal@2444 28 {
pascal@2444 29 mkdir -p $fs/usr/bin
pascal@2444 30 cp $src/${PACKAGE}_${VERSION}_src/lsof $fs/usr/bin
pascal@2444 31 }
pascal@2444 32