wok annotate squidview/receipt @ rev 24020

linld: fix iso9660/64
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 06 18:15:05 2021 +0000 (2021-03-06)
parents 3ba8d2c9720d
children 46dcc80bef41
rev   line source
pascal@16145 1 # SliTaz package receipt.
pascal@16145 2
pascal@16145 3 PACKAGE="squidview"
Hans-G?nter@21953 4 VERSION="0.86"
pascal@16145 5 CATEGORY="network"
pascal@16145 6 SHORT_DESC="Monitors and displays squid logs in console."
pascal@16145 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@16145 8 LICENSE="GPL2"
Hans-G?nter@21953 9 WEB_SITE="http://www.rillion.net/squidview/"
Hans-G?nter@21953 10
pascal@16145 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@16145 12 WGET_URL="$WEB_SITE$TARBALL"
pascal@16145 13
Hans-G?nter@21953 14 DEPENDS="gcc-lib-base ncurses"
pascal@16145 15 BUILD_DEPENDS="ncurses-dev"
pascal@16145 16
pascal@16145 17 # Rules to configure and make the package.
pascal@16145 18 compile_rules()
pascal@16145 19 {
pascal@17672 20 export LDFLAGS="$LDFLAGS -ltinfo"
Hans-G?nter@21953 21
Hans-G?nter@21953 22 ./configure \
Hans-G?nter@21953 23 --prefix=/usr \
Hans-G?nter@21953 24 --mandir=/usr/share/man \
Hans-G?nter@21953 25 $CONFIGURE_ARGS &&
pascal@16145 26 make &&
pascal@16145 27 make DESTDIR=$DESTDIR install
pascal@16145 28 }
pascal@16145 29
pascal@16145 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@16145 31 genpkg_rules()
pascal@16145 32 {
pascal@16145 33 mkdir -p $fs/usr
pascal@16145 34 cp -a $install/usr/bin $fs/usr
pascal@16145 35 }