wok annotate htop/receipt @ rev 18883

htop: build workaround
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 12 08:48:10 2016 +0100 (2016-02-12)
parents 29be722dd1a2
children d1139a9dbf88
rev   line source
pankso@7 1 # SliTaz package receipt.
pankso@7 2
pankso@7 3 PACKAGE="htop"
devl547@18882 4 VERSION="2.0.0"
pankso@202 5 CATEGORY="system-tools"
pankso@7 6 SHORT_DESC="Interactive process viewer."
pankso@7 7 MAINTAINER="pankso@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
pankso@7 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@7 10 WEB_SITE="http://htop.sourceforge.net/"
erjo@16728 11 WGET_URL="http://hisham.hm/htop/releases/$VERSION/$TARBALL"
jozee@4937 12 TAGS="monitor system"
pankso@12923 13 HOST_ARCH="i486 arm"
pankso@12923 14
pankso@12923 15 DEPENDS="ncursesw"
pankso@12923 16 BUILD_DEPENDS="ncursesw-dev"
pankso@16505 17
pankso@16505 18 # Handle cross comilation
pankso@12923 19 case "$ARCH" in
pankso@12923 20 arm) CROSS_ARGS="--enable-native_affinity=no" ;;
pankso@12923 21 esac
pankso@7 22
pankso@7 23 # Rules to configure and make the package.
pankso@7 24 compile_rules()
pankso@7 25 {
pascal@18883 26 cp missing /root/ # waiting the a real fix...
pankso@12923 27 ./configure \
pankso@12923 28 --enable-unicode \
pankso@12923 29 $CONFIGURE_ARGS $CROSS_ARGS &&
pascal@18883 30 make && make install && rm -f /root/missing
pascal@18883 31
pankso@7 32 }
pankso@7 33
pankso@7 34 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@7 35 genpkg_rules()
pankso@7 36 {
pankso@12923 37 mkdir -p $fs/usr/bin
pankso@12923 38 cp -a $install/usr/bin/* $fs/usr/bin
pankso@7 39 }