diff options
Diffstat (limited to 'wget/Pkgfile')
-rw-r--r-- | wget/Pkgfile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/wget/Pkgfile b/wget/Pkgfile new file mode 100644 index 0000000..5cfb6b7 --- /dev/null +++ b/wget/Pkgfile @@ -0,0 +1,23 @@ +description="A network utility for downloading content from the Web." +packager="CRUX System Team <core-ports AT crux DOT nu>" +maintainer="Lukc <lukc AT upyum DOT com>" +url="http://www.gnu.org/software/wget/" +depends=(openssl) + +name=wget +version=1.12 +release=1 +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.lzma wgetrc) +build () +{ + cd $name-$version; + ./configure \ + --prefix=$prefix \ + --sysconfdir=$sysconfdir \ + --mandir=$mandir \ + --disable-debug \ + $(use_enable nls); + make; + make DESTDIR=$PKG install; + install -D -m 644 $SRC/wgetrc $PKG$sysconfdir/wgetrc; +} |