CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
psmisc: updated to 22.8 and fixed arch maintainer's email
[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
4# Arch Maintainer: CRUX-ARM System
5# Depends on: openssl
6
7name=wget
8version=1.11.4
9release=1
10source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 \
11 wgetrc)
12
13build() {
14 cd $name-$version
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --sysconfdir=/etc \
19 --mandir=$PKG/usr/man \
20 --disable-debug \
21 --disable-nls
22 make
23 make prefix=$PKG/usr install.bin install.man
24 install -D -m 644 ../wgetrc $PKG/etc/wgetrc
25}