core/wget/Pkgfile

24 lines
585 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: Per Lid<69>n, core-ports at crux dot nu
# Packager: Per Lid<69>n, per at fukt dot bth dot se
# Depends on: openssl
2006-02-23 16:26:10 +01:00
name=wget
version=1.10.2
release=2
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \
2006-02-23 16:26:10 +01:00
wgetrc)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-debug \
--disable-nls
make
make prefix=$PKG/usr install.bin install.man
install -D -m 644 ../wgetrc $PKG/etc/wgetrc
}