wok view ftop/receipt @ rev 23916

updated nnn (3.3 -> 3.4)
author Hans-G?nter Theisgen
date Wed Aug 19 08:03:17 2020 +0100 (2020-08-19)
parents 106b0d0555d0
children 640a2eba2511
line source
1 # SliTaz package receipt.
3 PACKAGE="ftop"
4 VERSION="1.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Show progress of open files and file systems."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://sourceforge.net/projects/ftop/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="ncurses"
14 BUILD_DEPENDS="ncurses-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 make && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }