wok rev 18963

Up wget (1.17)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 09 19:55:45 2016 +0200 (2016-03-09)
parents e930c84adc30
children 77be6b57303b
files wget/description.txt wget/receipt
line diff
     1.1 --- a/wget/description.txt	Wed Mar 09 12:10:42 2016 +0100
     1.2 +++ b/wget/description.txt	Wed Mar 09 19:55:45 2016 +0200
     1.3 @@ -4,11 +4,13 @@
     1.4  recursive retrieval of web-authoring pages as well as FTP sites -- you can use
     1.5  Wget to make mirrors of archives and home pages or to travel the web like a WWW
     1.6  robot.
     1.7 +
     1.8  Wget works particularly well with slow or unstable connections by continuing to
     1.9  retrieve a document until the document is fully downloaded. Re-getting files
    1.10  from where it left off works on servers (both HTTP and FTP) that support it.
    1.11  Both HTTP and FTP retrievals can be time stamped, so Wget can see if the remote
    1.12  file has changed since the last retrieval and automatically retrieve the new
    1.13  version if it has.
    1.14 +
    1.15  Wget supports proxy servers; this can lighten the network load, speed up
    1.16  retrieval, and provide access behind firewalls.
     2.1 --- a/wget/receipt	Wed Mar 09 12:10:42 2016 +0100
     2.2 +++ b/wget/receipt	Wed Mar 09 19:55:45 2016 +0200
     2.3 @@ -1,18 +1,19 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="wget"
     2.7 -VERSION="1.16"
     2.8 +VERSION="1.17"
     2.9  CATEGORY="utilities"
    2.10 -SHORT_DESC="retrieves files from the web"
    2.11 +SHORT_DESC="GNU Wget - non-interactive download of files from the Web"
    2.12  MAINTAINER="sygne@ombres.eu"
    2.13  LICENSE="GPL3"
    2.14  TARBALL="$PACKAGE-$VERSION.tar.xz"
    2.15  WEB_SITE="http://www.gnu.org/software/wget/wget.html"
    2.16  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    2.17  HOST_ARCH="i486 arm"
    2.18 +CONFIG_FILES="/etc/wgetrc"
    2.19  
    2.20 -DEPENDS="openssl libidn pcre"
    2.21 -BUILD_DEPENDS="openssl-dev libidn-dev"
    2.22 +DEPENDS="libssl libidn pcre util-linux-uuid zlib"
    2.23 +BUILD_DEPENDS="openssl-dev libidn-dev flex util-linux-uuid-dev"
    2.24  
    2.25  # Handle cross compilation
    2.26  case "$ARCH" in
    2.27 @@ -22,9 +23,14 @@
    2.28  # Rules to configure and make the package.
    2.29  compile_rules()
    2.30  {
    2.31 -	./configure --with-ssl=openssl \
    2.32 +	./configure \
    2.33 +		--with-ssl=openssl \
    2.34 +		--with-openssl \
    2.35 +		--sysconfdir=/etc \
    2.36  		$CONFIGURE_ARGS $ARCH_ARGS &&
    2.37  	make DESTDIR=$DESTDIR install
    2.38 +
    2.39 +	gzip $install/usr/share/man/man1/wget.1
    2.40  }
    2.41  
    2.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.43 @@ -32,17 +38,7 @@
    2.44  {
    2.45  	mkdir -p $fs/usr
    2.46  	cp -a $install/usr/bin $fs/usr
    2.47 -}
    2.48 -
    2.49 -# Post install rules.
    2.50 -post_install()
    2.51 -{
    2.52 -	[ -z "$quiet" ] && echo -e "
    2.53 -wget is in conflict with the busybox wget.
    2.54 -If you want to use the busybox wget, do (as root):
    2.55 -\033[1m ln -s /bin/busybox /usr/bin/wget \033[0m
    2.56 -"
    2.57 -	:
    2.58 +	cp -a $install/etc $fs
    2.59  }
    2.60  
    2.61  post_remove()