X-Git-Url: http://gitweb/?a=blobdiff_plain;f=wget%2FPkgfile;h=5a0b5a284501f57d6278139fcc706f24b928c1d6;hb=25d21bea3e1cf6bfb60f93cf7a2de13e555f8a20;hp=7e19172279815ec0d882fa9fbc6d8689dd4c6b11;hpb=6dca1d213a39ee6af51632926e8b7c8914215cd9;p=crossrootfs.git diff --git a/wget/Pkgfile b/wget/Pkgfile index 7e19172..5a0b5a2 100644 --- a/wget/Pkgfile +++ b/wget/Pkgfile @@ -1,25 +1,31 @@ # 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 -# Arch Maintainer: CRUX-ARM System +# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu # Depends on: openssl name=wget -version=1.11.4 +version=1.14 release=1 -source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 \ - wgetrc) +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz \ + wgetrc) build() { cd $name-$version + ./configure --build=$CHOST \ --host=$CTARGET \ --prefix=/usr \ --sysconfdir=/etc \ - --mandir=$PKG/usr/man \ + --mandir=/usr/man \ --disable-debug \ - --disable-nls + --disable-nls \ + --with-ssl=openssl \ + --with-libssl-prefix=$CLFS/usr + make - make prefix=$PKG/usr install.bin install.man - install -D -m 644 ../wgetrc $PKG/etc/wgetrc + make DESTDIR=$PKG install + install -D -m 0644 $SRC/wgetrc $PKG/etc/wgetrc + + rm -r $PKG/usr/share }