wok-6.x view htop/receipt @ rev 6565

Added mesa, libdrm-dev, xorg-dev-proto, and libxcb-dev to depends of mesa-dev. Fixes pkgconfig --cflags glw from not working in clean chroot.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 08 00:43:28 2010 +0000 (2010-10-08)
parents c6ccd6bc43b1
children 96b43eaea827
line source
1 # SliTaz package receipt.
3 PACKAGE="htop"
4 VERSION="0.8.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="Interactive process viewer."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncurses"
9 BUILD_DEPENDS="ncurses-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://htop.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="monitor system"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin $fs/usr/share
28 cp -a $_pkg/usr/bin/* $fs/usr/bin
29 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
30 strip -s $fs/usr/bin/*
31 }