blob: 53aeb05f103e662c5210c2a1acdf01e6f198d290 (
plain)
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
4 # Packager: CRUX System Team, core-ports at crux dot nu
5 # Depends on: openssl
6
7 name=wget
8 version=1.11.3
9 release=1
10 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 \
11 wgetrc)
12
13 build() {
14 cd $name-$version
15 ./configure --prefix=/usr \
16 --sysconfdir=/etc \
17 --mandir=$PKG/usr/man \
18 --disable-debug \
19 --disable-nls
20 make
21 make prefix=$PKG/usr install.bin install.man
22 install -D -m 644 ../wgetrc $PKG/etc/wgetrc
23 }
|