X-Git-Url: http://gitweb/?a=blobdiff_plain;f=wget%2FPkgfile;h=acfebc626e6f5af0cfef4a227b9c1a20003c6089;hb=0132219921a442e1e8a078d62f1e764d4a078e38;hp=7e19172279815ec0d882fa9fbc6d8689dd4c6b11;hpb=6dca1d213a39ee6af51632926e8b7c8914215cd9;p=crossrootfs.git diff --git a/wget/Pkgfile b/wget/Pkgfile index 7e19172..acfebc6 100644 --- a/wget/Pkgfile +++ b/wget/Pkgfile @@ -1,25 +1,30 @@ # 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.12 release=1 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 \ - wgetrc) + wgetrc) build() { cd $name-$version + ./configure --build=$CHOST \ --host=$CTARGET \ --prefix=/usr \ --sysconfdir=/etc \ - --mandir=$PKG/usr/man \ + --mandir=/usr/man \ + --with-libssl-prefix=$CLFS/usr \ --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 0644 $SRC/wgetrc $PKG/etc/wgetrc + + rm -r $PKG/usr/share }