summaryrefslogtreecommitdiffstats
path: root/wget/Pkgfile
blob: 1766b67c61e7bc38070bfec8535f73f2a838d595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
description="A network utility for downloading content from the Web"
packager=""
maintainer="CRUX System Team, core-ports at crux dot nu"
url="http://www.gnu.org/software/wget/"
depends=(openssl)

name=wget
version=1.12
release=1
source=(http://ftp.gnu.org/gnu/wget/wget-1.12.tar.lzma wgetrc)
build () 
{ 
    cd $name-$version;
    ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/man --disable-debug --disable-nls;
    make;
    make DESTDIR=$PKG install;
    install -D -m 644 $SRC/wgetrc $PKG/etc/wgetrc;
    rm -r $PKG/usr/share
}