wok diff squidview/receipt @ rev 22007
yarock: fix FindTaglib.cmake
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Oct 19 10:25:12 2019 +0200 (2019-10-19) |
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 Oct 19 10:25:12 2019 +0200 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 }