# HG changeset patch # User Paul Issott # Date 1397407298 -3600 # Node ID 106b0d0555d0ec0cb9d020018a860f61fdecdad7 # Parent 0a1bd2c2da420f1e761e63c70ed8bae82e7ce768 Add ftop diff -r 0a1bd2c2da42 -r 106b0d0555d0 ftop/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ftop/receipt Sun Apr 13 17:41:38 2014 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="ftop" +VERSION="1.0" +CATEGORY="utilities" +SHORT_DESC="Show progress of open files and file systems." +MAINTAINER="paul@slitaz.org" +LICENSE="GPL2.1" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://code.google.com/p/ftop/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +DEPENDS="ncurses" +BUILD_DEPENDS="ncurses-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + make && make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/bin $fs/usr +} +