wok view htop/receipt @ rev 939

wpa_supplicant: typo, WPA_CONF -> WPA_OPTIONS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 23 17:05:29 2008 +0000 (2008-06-23)
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 }