wok annotate whowatch/receipt @ rev 20501
frozen-bubble: move *.pm to i486-linux path
author | Richard Dunbar <mojo@slitaz.org> |
---|---|
date | Mon Oct 29 17:05:35 2018 -0400 (2018-10-29) |
parents | f708898621f0 |
children | aaa3fcf79cf3 |
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 { |
pascal@17670 | 19 export LDFLAGS="$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 |