wok view htop/receipt @ rev 999

receipt the rox-filer locales
author Pierre-Jean Fichet <sygne@ombres.eu>
date Sun Jul 06 16:50:31 2008 +0200 (2008-07-06)
parents 4615573735e2
children 484f8f7b44bf
line source
1 # SliTaz package receipt.
3 PACKAGE="htop"
4 VERSION="0.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="Interactive process viewer."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncurses"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://htop.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $fs/usr/share
26 cp -a $_pkg/usr/bin/* $fs/usr/bin
27 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
28 strip -s $fs/usr/bin/*
29 }