wok annotate ftop/receipt @ rev 23009

samba: update deps (thanks mistfire)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 03 08:04:44 2020 +0100 (2020-03-03)
parents 106b0d0555d0
children 640a2eba2511
rev   line source
paul@16355 1 # SliTaz package receipt.
paul@16355 2
paul@16355 3 PACKAGE="ftop"
paul@16355 4 VERSION="1.0"
paul@16355 5 CATEGORY="utilities"
paul@16355 6 SHORT_DESC="Show progress of open files and file systems."
paul@16355 7 MAINTAINER="paul@slitaz.org"
paul@16355 8 LICENSE="GPL2.1"
paul@16355 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20673 10 WEB_SITE="https://sourceforge.net/projects/ftop/"
paul@16355 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
paul@16355 12
paul@16355 13 DEPENDS="ncurses"
paul@16355 14 BUILD_DEPENDS="ncurses-dev"
paul@16355 15
paul@16355 16 # Rules to configure and make the package.
paul@16355 17 compile_rules()
paul@16355 18 {
paul@16355 19 cd $src
paul@16355 20 ./configure \
paul@16355 21 --prefix=/usr \
paul@16355 22 make && make DESTDIR=$DESTDIR install
paul@16355 23 }
paul@16355 24
paul@16355 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@16355 26 genpkg_rules()
paul@16355 27 {
paul@16355 28 mkdir -p $fs/usr
paul@16355 29 cp -a $install/usr/bin $fs/usr
paul@16355 30 }
paul@16355 31