wok-undigest annotate wavemon/receipt @ rev 1003

Add python-py
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 22 18:07:00 2013 +0200 (2013-04-22)
parents
children
rev   line source
paul@903 1 # SliTaz package receipt.
paul@903 2
paul@903 3 PACKAGE="wavemon"
paul@903 4 VERSION="0.7.5"
paul@903 5 CATEGORY="network"
paul@903 6 SHORT_DESC="Wavemon is an ncurses-based monitoring application for wireless network devices."
paul@903 7 MAINTAINER="paul@slitaz.org"
paul@903 8 DEPENDS="ncurses libcap"
paul@903 9 BUILD_DEPENDS="ncurses-dev libcap-dev"
paul@903 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
paul@903 11 WEB_SITE="http://eden-feed.erg.abdn.ac.uk/wavemon/"
paul@903 12 WGET_URL="http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/$TARBALL"
paul@903 13
paul@903 14 # Rules to configure and make the package.
paul@903 15 compile_rules()
paul@903 16 {
paul@903 17 cd $src
paul@903 18 ./configure \
paul@903 19 --prefix=/usr \
paul@903 20 $CONFIGURE_ARGS &&
paul@903 21 make && make install
paul@903 22 }
paul@903 23
paul@903 24 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@903 25 genpkg_rules()
paul@903 26 {
paul@903 27 mkdir -p $fs/usr
paul@903 28 cp -a $install/usr/bin $fs/usr
paul@903 29 }
paul@903 30