CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
wget: updated to 1.19.5
[crossrootfs.git] / wget / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: A network utility for downloading content from the Web
2# URL: http://www.gnu.org/software/wget/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
b751b192 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6dca1d21
JB
5# Depends on: openssl
6
7name=wget
ca86aa4c 8version=1.19.5
6420a809 9release=1
ca86aa4c 10source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz
356979bf 11 wgetrc)
6dca1d21
JB
12
13build() {
14 cd $name-$version
356979bf 15
6dca1d21
JB
16 ./configure --build=$CHOST \
17 --host=$CTARGET \
18 --prefix=/usr \
19 --sysconfdir=/etc \
6dca1d21 20 --disable-debug \
9cb54394
VM
21 --disable-nls \
22 --with-ssl=openssl \
e0781ccd 23 --disable-rpath \
9cb54394 24 --with-libssl-prefix=$CLFS/usr
356979bf 25
6dca1d21 26 make
356979bf
JB
27 make DESTDIR=$PKG install
28 install -D -m 0644 $SRC/wgetrc $PKG/etc/wgetrc
29
2c09df8c 30 rm -r $PKG/usr/share/info
6dca1d21 31}