blob: 53253641dfe25df7d8920a54ef8663ecbab6c31b (
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 # Depends on: openssl
5
6 name=wget
7 version=1.19.1
8 release=1
9 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz \
10 wgetrc)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr \
16 --sysconfdir=/etc \
17 --disable-debug \
18 --disable-nls \
19 --with-ssl=openssl
20
21 make
22 make DESTDIR=$PKG install
23 install -D -m 644 $SRC/wgetrc $PKG/etc/wgetrc
24
25 rm -r $PKG/usr/share/info
26 }
|