wok view htop/receipt @ rev 19101

Up vlc (2.2.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 04 10:51:05 2016 +0200 (2016-05-04)
parents 29be722dd1a2
children d1139a9dbf88
line source
1 # SliTaz package receipt.
3 PACKAGE="htop"
4 VERSION="2.0.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 cp missing /root/ # waiting the a real fix...
27 ./configure \
28 --enable-unicode \
29 $CONFIGURE_ARGS $CROSS_ARGS &&
30 make && make install && rm -f /root/missing
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/bin
38 cp -a $install/usr/bin/* $fs/usr/bin
39 }