diff options
author | Juergen Daubert <jue@jue.li> | 2009-09-25 11:24:24 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2009-09-25 11:24:24 +0200 |
commit | bc4e4da9db244a6b0f37c4ab2eb00380d040a51f (patch) | |
tree | efaf022c4dbac72fc67e056e446ce14a81279f06 /wget | |
parent | 0d540a4e9b44322ad299b039bf77d2c716f36d00 (diff) | |
download | pkgutils-bc4e4da9db244a6b0f37c4ab2eb00380d040a51f.tar.gz pkgutils-bc4e4da9db244a6b0f37c4ab2eb00380d040a51f.tar.xz |
wget: update to 1.12
Diffstat (limited to 'wget')
-rw-r--r-- | wget/.md5sum | 2 | ||||
-rw-r--r-- | wget/Pkgfile | 24 |
2 files changed, 14 insertions, 12 deletions
diff --git a/wget/.md5sum b/wget/.md5sum index 3abc2bcc..f6c66021 100644 --- a/wget/.md5sum +++ b/wget/.md5sum @@ -1,2 +1,2 @@ -f5076a8c2ec2b7f334cb6e3059820f9c wget-1.11.4.tar.bz2 +e6ee1f02df61c6fb8a076be66983090a wget-1.12.tar.lzma fa717c9970a09e8ee1775a93e51fb694 wgetrc diff --git a/wget/Pkgfile b/wget/Pkgfile index 55e20541..da57c08b 100644 --- a/wget/Pkgfile +++ b/wget/Pkgfile @@ -1,24 +1,26 @@ # Description: A network utility for downloading content from the Web # URL: http://www.gnu.org/software/wget/ # Maintainer: CRUX System Team, core-ports at crux dot nu -# Packager: CRUX System Team, core-ports at crux dot nu # Depends on: openssl name=wget -version=1.11.4 +version=1.12 release=1 -source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 \ - wgetrc) +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.lzma \ + wgetrc) build() { cd $name-$version + ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=$PKG/usr/man \ - --disable-debug \ - --disable-nls + --sysconfdir=/etc \ + --mandir=/usr/man \ + --disable-debug \ + --disable-nls + make - make prefix=$PKG/usr install.bin install.man - install -D -m 644 ../wgetrc $PKG/etc/wgetrc -} + make DESTDIR=$PKG install + install -D -m 644 $SRC/wgetrc $PKG/etc/wgetrc + rm -r $PKG/usr/share +} |