wok-current annotate htop/receipt @ rev 7666

Moved Module.sysvers to Module.sysvers-modules. This is cause i think making linux-without-modules bzImage is was change that file. Removed /usr/src/linux in pre_remove function in linux-module-headers. Added /usr/src/linux soft link to post_install in linux-module-headers.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 12:59:54 2010 +0000 (2010-12-16)
parents c6ccd6bc43b1
children 96b43eaea827
rev   line source
pankso@7 1 # SliTaz package receipt.
pankso@7 2
pankso@7 3 PACKAGE="htop"
slaxemulator@6263 4 VERSION="0.8.3"
pankso@202 5 CATEGORY="system-tools"
pankso@7 6 SHORT_DESC="Interactive process viewer."
pankso@7 7 MAINTAINER="pankso@slitaz.org"
pankso@7 8 DEPENDS="ncurses"
pascal@1439 9 BUILD_DEPENDS="ncurses-dev"
pankso@7 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@7 11 WEB_SITE="http://htop.sourceforge.net/"
pankso@7 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
jozee@4937 13 TAGS="monitor system"
pankso@7 14
pankso@7 15 # Rules to configure and make the package.
pankso@7 16 compile_rules()
pankso@7 17 {
pankso@7 18 cd $src
pascal@1439 19 ./configure --prefix=/usr --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1439 20 make &&
pankso@7 21 make DESTDIR=$PWD/_pkg install
pankso@7 22 }
pankso@7 23
pankso@7 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@7 25 genpkg_rules()
pankso@7 26 {
pankso@7 27 mkdir -p $fs/usr/bin $fs/usr/share
pankso@7 28 cp -a $_pkg/usr/bin/* $fs/usr/bin
pankso@7 29 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
pankso@7 30 strip -s $fs/usr/bin/*
pankso@7 31 }