wok annotate whowatch/receipt @ rev 17657

Up: flex 2.5.39
author Alexander Medvedev <devl547@gmail.com>
date Sat Feb 14 22:45:48 2015 +0000 (2015-02-14)
parents
children 17e313b5b9c1
rev   line source
paul@17555 1 # SliTaz package receipt.
paul@17555 2
paul@17555 3 PACKAGE="whowatch"
paul@17555 4 VERSION="1.8.5"
paul@17555 5 CATEGORY="utilities"
paul@17555 6 SHORT_DESC="Real-time user logins monitoring tool."
paul@17555 7 MAINTAINER="paul@slitaz.org"
paul@17555 8 LICENSE="GPL2"
paul@17555 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@17555 10 WEB_SITE="http://wizard.ae.krakow.pl/~mike/#whowatch"
paul@17555 11 WGET_URL="http://wizard.ae.krakow.pl/~mike/download/$TARBALL"
paul@17555 12
paul@17555 13 DEPENDS="ncurses libtinfo"
paul@17555 14 BUILD_DEPENDS="ncurses-dev"
paul@17555 15
paul@17555 16 # Rules to configure and make the package.
paul@17555 17 compile_rules()
paul@17555 18 {
paul@17555 19 export LDFLAGS="-Wl,--copy-dt-needed-entries"
paul@17555 20 ./configure --prefix=/usr
paul@17555 21 make
paul@17555 22 make install
paul@17555 23 }
paul@17555 24
paul@17555 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@17555 26 genpkg_rules()
paul@17555 27 {
paul@17555 28 mkdir -p $fs/usr
paul@17555 29 cp -a $install/usr/bin $fs/usr
paul@17555 30 }
paul@17555 31