wok diff wget/receipt @ rev 23696

Up libtcplay (3.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 27 09:29:39 2020 +0000 (2020-04-27)
parents 427e7751c594
children 71360a13cd94
line diff
     1.1 --- a/wget/receipt	Mon Oct 29 16:54:35 2018 +0100
     1.2 +++ b/wget/receipt	Mon Apr 27 09:29:39 2020 +0000
     1.3 @@ -1,19 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="wget"
     1.7 -VERSION="1.19.5"
     1.8 +VERSION="1.20.3"
     1.9  CATEGORY="network"
    1.10 -SHORT_DESC="GNU Wget - non-interactive download of files from the Web"
    1.11 +SHORT_DESC="An utility for retrieving files using HTTP, HTTPS or FTP."
    1.12  MAINTAINER="sygne@ombres.eu"
    1.13  LICENSE="GPL3"
    1.14 +WEB_SITE="https://www.gnu.org/software/wget/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="http://www.gnu.org/software/wget/"
    1.18  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.19 -HOST_ARCH="i486 arm"
    1.20 +
    1.21 +DEPENDS="libidn libssl pcre util-linux-uuid zlib"
    1.22 +BUILD_DEPENDS="flex libidn-dev openssl-dev util-linux-uuid-dev"
    1.23 +
    1.24  CONFIG_FILES="/etc/wgetrc"
    1.25  
    1.26 -DEPENDS="libssl libidn pcre util-linux-uuid zlib"
    1.27 -BUILD_DEPENDS="openssl-dev libidn-dev flex util-linux-uuid-dev"
    1.28 +HOST_ARCH="i486 arm"
    1.29  
    1.30  # Handle cross compilation
    1.31  case "$ARCH" in
    1.32 @@ -23,11 +26,12 @@
    1.33  # Rules to configure and make the package.
    1.34  compile_rules()
    1.35  {
    1.36 -	./configure \
    1.37 -		--with-ssl=openssl \
    1.38 -		--with-openssl \
    1.39 -		--sysconfdir=/etc \
    1.40 -		$CONFIGURE_ARGS $ARCH_ARGS &&
    1.41 +	./configure			\
    1.42 +		--with-ssl=openssl	\
    1.43 +		--with-openssl		\
    1.44 +		--sysconfdir=/etc	\
    1.45 +		$CONFIGURE_ARGS		\
    1.46 +		$ARCH_ARGS &&
    1.47  	make DESTDIR=$DESTDIR install
    1.48  
    1.49  	gzip -9 $install/usr/share/man/man1/wget.1
    1.50 @@ -37,7 +41,9 @@
    1.51  genpkg_rules()
    1.52  {
    1.53  	cp -a $install/* $fs
    1.54 -	rm -r $fs/usr/share/info $fs/usr/share/locale
    1.55 +
    1.56 +	rm -r $fs/usr/share/info
    1.57 +	rm -r $fs/usr/share/locale
    1.58  }
    1.59  
    1.60  post_remove()