wok rev 22126

updated wget (1.19.5 -> 1.20.3)
author Hans-G?nter Theisgen
date Mon Nov 04 10:12:01 2019 +0100 (2019-11-04)
parents 0f288bee7e75
children cf4d5bcb351a
files wget/receipt
line diff
     1.1 --- a/wget/receipt	Mon Nov 04 09:25:11 2019 +0100
     1.2 +++ b/wget/receipt	Mon Nov 04 10:12:01 2019 +0100
     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()