wok view whowatch/receipt @ rev 22651
updated docbook-xsl (1.79.1 -> 1.79.2)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jan 14 14:40:03 2020 +0100 (2020-01-14) |
parents | aaa3fcf79cf3 |
children | 5ea0ce1cecc0 |
line source
1 # SliTaz package receipt.
3 PACKAGE="whowatch"
4 VERSION="1.8.6"
5 CATEGORY="utilities"
6 SHORT_DESC="Real-time user logins monitoring tool."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/mtsuszycki/whowatch/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}releases/download/$PACKAGE-$VERSION/$TARBALL"
14 DEPENDS="libtinfo ncurses"
15 BUILD_DEPENDS="ncurses-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries"
22 ./configure --prefix=/usr &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }