wok rev 25408
updated wget (1.20.3 -> 1.21.3)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Aug 03 17:48:43 2022 +0100 (2022-08-03) |
parents | f15be612c035 |
children | d644f4cecfbf |
files | wget-lang/receipt wget/description.txt wget/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/wget-lang/receipt Wed Aug 03 17:48:43 2022 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="wget-lang" 1.7 +VERSION="1.21.3" 1.8 +CATEGORY="localization" 1.9 +SHORT_DESC="An utility for retrieving files using HTTP, HTTPS or FTP - localised messages." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="GPL3" 1.12 +WEB_SITE="https://www.gnu.org/software/wget/" 1.13 + 1.14 +WANTED="wget" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + cook_copy_folders locale 1.20 +}
2.1 --- a/wget/description.txt Wed Aug 03 16:34:53 2022 +0100 2.2 +++ b/wget/description.txt Wed Aug 03 17:48:43 2022 +0100 2.3 @@ -1,16 +1,18 @@ 2.4 -Wget is a network utility to retrieve files from the web using HTTP(S) and FTP, 2.5 -the two most widely used internet protocols. It works non-interactively, so it 2.6 -will work in the background, after having logged off. The program supports 2.7 -recursive retrieval of web-authoring pages as well as FTP sites -- you can use 2.8 -Wget to make mirrors of archives and home pages or to travel the web like a WWW 2.9 -robot. 2.10 +Wget is a network utility to retrieve files from the web using HTTP(S) 2.11 +and FTP, the two most widely used internet protocols. 2.12 +It works non-interactively, so it will work in the background, after 2.13 +having logged off. 2.14 +The program supports recursive retrieval of web-authoring pages as well 2.15 +as FTP sites -- you can use wget to make mirrors of archives and home 2.16 +pages or to travel the web like a WWW robot. 2.17 2.18 -Wget works particularly well with slow or unstable connections by continuing to 2.19 -retrieve a document until the document is fully downloaded. Re-getting files 2.20 -from where it left off works on servers (both HTTP and FTP) that support it. 2.21 -Both HTTP and FTP retrievals can be time stamped, so Wget can see if the remote 2.22 -file has changed since the last retrieval and automatically retrieve the new 2.23 -version if it has. 2.24 +Wget works particularly well with slow or unstable connections by 2.25 +continuing to retrieve a document until the document is fully downloaded. 2.26 +Re-getting files from where it left off works on servers (both HTTP and 2.27 +FTP) that support it. 2.28 +Both HTTP and FTP retrievals can be time stamped, so wget can see if the 2.29 +remote file has changed since the last retrieval and automatically 2.30 +retrieve the new version if it has. 2.31 2.32 Wget supports proxy servers; this can lighten the network load, speed up 2.33 retrieval, and provide access behind firewalls.
3.1 --- a/wget/receipt Wed Aug 03 16:34:53 2022 +0100 3.2 +++ b/wget/receipt Wed Aug 03 17:48:43 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="wget" 3.7 -VERSION="1.20.3" 3.8 +VERSION="1.21.3" 3.9 CATEGORY="network" 3.10 SHORT_DESC="An utility for retrieving files using HTTP, HTTPS or FTP." 3.11 MAINTAINER="sygne@ombres.eu" 3.12 @@ -11,6 +11,7 @@ 3.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 3.15 3.16 +SUGGESTED="wget-lang" 3.17 DEPENDS="libidn libssl pcre util-linux-uuid zlib" 3.18 BUILD_DEPENDS="flex libidn-dev openssl-dev util-linux-uuid-dev" 3.19 3.20 @@ -39,7 +40,7 @@ 3.21 --sysconfdir=/etc \ 3.22 $CONFIGURE_ARGS \ 3.23 $ARCH_ARGS && 3.24 - make DESTDIR=$DESTDIR install 3.25 + make install DESTDIR=$DESTDIR 3.26 3.27 gzip -9 $install/usr/share/man/man1/wget.1 3.28 } 3.29 @@ -47,13 +48,11 @@ 3.30 # Rules to gen a SliTaz package suitable for Tazpkg. 3.31 genpkg_rules() 3.32 { 3.33 - cp -a $install/* $fs 3.34 - 3.35 - rm -r $fs/usr/share/info 3.36 - rm -r $fs/usr/share/locale 3.37 + cook_copy_folders etc 3.38 + cook_copy_folders bin 3.39 } 3.40 3.41 post_remove() 3.42 { 3.43 - ln -s /bin/busybox "$1/usr/bin/wget" 3.44 + ln -s /bin/busybox "$1/usr/bin/wget" 3.45 }