wok view ftop/receipt @ rev 17512

util-linux-blkid: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 11 11:40:15 2015 +0100 (2015-01-11)
parents
children e3f377fbc5f0
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://code.google.com/p/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 }