wok view wavemon/receipt @ rev 19683

Add: mate (a package to install all MATE desktop at once)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 12 00:43:16 2017 +0100 (2017-02-12)
parents f4c22f009037
children 6135577f4d08
line source
1 # SliTaz package receipt.
3 PACKAGE="wavemon"
4 VERSION="0.7.5"
5 CATEGORY="network"
6 SHORT_DESC="Wavemon is an ncurses-based monitoring application for wireless network devices."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://eden-feed.erg.abdn.ac.uk/wavemon/"
11 WGET_URL="http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/$TARBALL"
13 DEPENDS="ncurses libcap"
14 BUILD_DEPENDS="ncurses-dev libcap-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 export LDFLAGS="$LDFLAGS -ltinfo"
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }