# HG changeset patch # User Aleksej Bobylev # Date 1457546145 -7200 # Node ID 3b127f92c05745c8c367e56f99d182716e054b93 # Parent e930c84adc30c8a8d76dc36260ce01fd55f6627a Up wget (1.17) diff -r e930c84adc30 -r 3b127f92c057 wget/description.txt --- a/wget/description.txt Wed Mar 09 12:10:42 2016 +0100 +++ b/wget/description.txt Wed Mar 09 19:55:45 2016 +0200 @@ -4,11 +4,13 @@ recursive retrieval of web-authoring pages as well as FTP sites -- you can use Wget to make mirrors of archives and home pages or to travel the web like a WWW robot. + Wget works particularly well with slow or unstable connections by continuing to retrieve a document until the document is fully downloaded. Re-getting files from where it left off works on servers (both HTTP and FTP) that support it. Both HTTP and FTP retrievals can be time stamped, so Wget can see if the remote file has changed since the last retrieval and automatically retrieve the new version if it has. + Wget supports proxy servers; this can lighten the network load, speed up retrieval, and provide access behind firewalls. diff -r e930c84adc30 -r 3b127f92c057 wget/receipt --- a/wget/receipt Wed Mar 09 12:10:42 2016 +0100 +++ b/wget/receipt Wed Mar 09 19:55:45 2016 +0200 @@ -1,18 +1,19 @@ # SliTaz package receipt. PACKAGE="wget" -VERSION="1.16" +VERSION="1.17" CATEGORY="utilities" -SHORT_DESC="retrieves files from the web" +SHORT_DESC="GNU Wget - non-interactive download of files from the Web" MAINTAINER="sygne@ombres.eu" LICENSE="GPL3" TARBALL="$PACKAGE-$VERSION.tar.xz" WEB_SITE="http://www.gnu.org/software/wget/wget.html" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" HOST_ARCH="i486 arm" +CONFIG_FILES="/etc/wgetrc" -DEPENDS="openssl libidn pcre" -BUILD_DEPENDS="openssl-dev libidn-dev" +DEPENDS="libssl libidn pcre util-linux-uuid zlib" +BUILD_DEPENDS="openssl-dev libidn-dev flex util-linux-uuid-dev" # Handle cross compilation case "$ARCH" in @@ -22,9 +23,14 @@ # Rules to configure and make the package. compile_rules() { - ./configure --with-ssl=openssl \ + ./configure \ + --with-ssl=openssl \ + --with-openssl \ + --sysconfdir=/etc \ $CONFIGURE_ARGS $ARCH_ARGS && make DESTDIR=$DESTDIR install + + gzip $install/usr/share/man/man1/wget.1 } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -32,17 +38,7 @@ { mkdir -p $fs/usr cp -a $install/usr/bin $fs/usr -} - -# Post install rules. -post_install() -{ - [ -z "$quiet" ] && echo -e " -wget is in conflict with the busybox wget. -If you want to use the busybox wget, do (as root): -\033[1m ln -s /bin/busybox /usr/bin/wget \033[0m -" - : + cp -a $install/etc $fs } post_remove()