wok view htop/receipt @ rev 21889

updated scite (3.2.0 -> 4.2.0)
author Hans-G?nter Theisgen
date Thu Oct 03 10:00:59 2019 +0100 (2019-10-03)
parents 20a3bbae50ec
children 370da83187ab
line source
1 # SliTaz package receipt.
3 PACKAGE="htop"
4 VERSION="2.2.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Interactive process viewer."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://htop.sourceforge.net/"
11 WGET_URL="http://hisham.hm/htop/releases/$VERSION/$TARBALL"
12 TAGS="monitor system"
13 HOST_ARCH="i486 arm"
15 DEPENDS="ncursesw"
16 BUILD_DEPENDS="ncursesw-dev"
18 # Handle cross comilation
19 case "$ARCH" in
20 arm) CROSS_ARGS="--enable-native_affinity=no" ;;
21 esac
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure \
27 --enable-unicode \
28 $CONFIGURE_ARGS $CROSS_ARGS &&
29 make && make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/bin
37 cp -a $install/usr/bin/* $fs/usr/bin
38 }