core/wget/Pkgfile

25 lines
625 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# 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
# Packager: CRUX System Team, core-ports at crux dot nu
# Depends on: openssl
2006-02-23 16:26:10 +01:00
name=wget
2008-06-30 13:06:08 +02:00
version=1.11.4
2008-01-27 11:08:27 +01:00
release=1
2008-04-12 15:41:26 +02:00
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 \
2006-02-23 16:26:10 +01:00
wgetrc)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
2008-01-27 11:08:27 +01:00
--mandir=$PKG/usr/man \
2006-02-23 16:26:10 +01:00
--disable-debug \
--disable-nls
make
make prefix=$PKG/usr install.bin install.man
install -D -m 644 ../wgetrc $PKG/etc/wgetrc
}