wok-6.x view squidview/receipt @ rev 17478

Up openssh,openssh-pam,sftp-server to 6.7p1
author Richard Dunbar <mojo@slitaz.org>
date Mon Dec 29 13:36:32 2014 -0500 (2014-12-29)
parents
children 3ba8d2c9720d
line source
1 # SliTaz package receipt.
3 PACKAGE="squidview"
4 VERSION="0.80"
5 CATEGORY="network"
6 SHORT_DESC="Monitors and displays squid logs in console."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.rillion.net/squidview/"
11 WGET_URL="$WEB_SITE$TARBALL"
13 DEPENDS="ncurses gcc-lib-base"
14 BUILD_DEPENDS="ncurses-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR 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 }