wok-next view htop/receipt @ rev 20607

perdition: up 2.2
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 19 15:57:59 2018 +0300 (2018-04-19)
parents c4e53a39395a
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="htop"
4 VERSION="2.0.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Interactive process viewer"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://htop.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://hisham.hm/htop/releases/$VERSION/$TARBALL"
14 BUILD_DEPENDS="ncurses-dev"
16 compile_rules() {
17 case "$ARCH" in
18 arm) ARCH_ARGS="--enable-native_affinity=no";;
19 esac
21 ./configure \
22 --enable-unicode \
23 $ARCH_ARGS \
24 $CONFIGURE_ARGS &&
25 fix libtool &&
26 make &&
27 make install
28 }
30 genpkg_rules() {
31 copy @std
32 DEPENDS="ncurses"
33 TAGS="monitor system"
34 }