wok diff 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
line diff
     1.1 --- a/squidview/receipt	Tue Feb 17 12:55:08 2015 +0100
     1.2 +++ b/squidview/receipt	Sat Mar 06 18:15:05 2021 +0000
     1.3 @@ -1,25 +1,28 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="squidview"
     1.7 -VERSION="0.80"
     1.8 +VERSION="0.86"
     1.9  CATEGORY="network"
    1.10  SHORT_DESC="Monitors and displays squid logs in console."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="http://www.rillion.net/squidview/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://www.rillion.net/squidview/"
    1.17  WGET_URL="$WEB_SITE$TARBALL"
    1.18  
    1.19 -DEPENDS="ncurses gcc-lib-base"
    1.20 +DEPENDS="gcc-lib-base ncurses"
    1.21  BUILD_DEPENDS="ncurses-dev"
    1.22  
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26  	export LDFLAGS="$LDFLAGS -ltinfo"
    1.27 -	./configure --prefix=/usr \
    1.28 -		--mandir=/usr/share/man \
    1.29 -	$CONFIGURE_ARGS &&
    1.30 +
    1.31 +	./configure			\
    1.32 +		--prefix=/usr		\
    1.33 +		--mandir=/usr/share/man	\
    1.34 +		$CONFIGURE_ARGS &&
    1.35  	make &&
    1.36  	make DESTDIR=$DESTDIR install
    1.37  }