summaryrefslogtreecommitdiff
path: root/extra/wget
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-10-27 01:51:21 -0700
committerroot <root@rshg054.dnsready.net>2012-10-27 01:51:21 -0700
commit869e64b12767be3ef5b1e3628f337a9e116e2bbb (patch)
tree146e63e85bbe4e336ae423d989d06b321fc16cec /extra/wget
parentff20b83d60041f745a579e10770706b0b49d5617 (diff)
Sat Oct 27 01:51:01 PDT 2012
Diffstat (limited to 'extra/wget')
-rw-r--r--extra/wget/PKGBUILD17
1 files changed, 4 insertions, 13 deletions
diff --git a/extra/wget/PKGBUILD b/extra/wget/PKGBUILD
index 87f617417..9b1244031 100644
--- a/extra/wget/PKGBUILD
+++ b/extra/wget/PKGBUILD
@@ -1,15 +1,15 @@
-# $Id: PKGBUILD 165091 2012-08-10 09:03:30Z allan $
+# $Id: PKGBUILD 169712 2012-10-27 01:52:51Z stephane $
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: Judd Vinet <jvinet@zeroflux.org>
pkgname=wget
pkgver=1.14
-pkgrel=1
+pkgrel=2
pkgdesc="A network utility to retrieve files from the Web"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/wget/wget.html"
license=('GPL3')
-depends=('glibc' 'openssl')
+depends=('openssl' 'libidn' 'pcre' 'util-linux')
optdepends=('ca-certificates: HTTPS downloads')
backup=('etc/wgetrc')
install=wget.install
@@ -20,12 +20,7 @@ md5sums=('316f6f59292c9098ad81fd54f658c579'
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- # Note : We do not build with --enable-nls, because there is a bug in wget causing
- # international domain names to be not properly converted to punycode if
- # the current locale is a UTF-8 one
- # See : http://lists.gnu.org/archive/html/bug-wget/2011-02/msg00026.html
-
- ./configure -with-ssl=openssl --prefix=/usr --sysconfdir=/etc
+ ./configure -with-ssl=openssl --prefix=/usr --sysconfdir=/etc --enable-nls
make
}
@@ -38,8 +33,4 @@ package() {
# default root certs location
ca_certificate=/etc/ssl/certs/ca-certificates.crt
EOF
-
- # remove IRI option from wgetrc as it does not work (see above)
- sed -i '118,120d' $pkgdir/etc/wgetrc
-
}