wok view htop/receipt @ rev 19111

gtk-theme-{albatross,blackbird,bluebird,greybird,orion}: define all gtk2 icon-related sizes
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 06 15:40:30 2016 +0300 (2016-05-06)
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 }