diff options
author | Lukc <lukc@upyum.com> | 2010-12-12 20:54:38 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-12 20:54:38 +0100 |
commit | 2fb1977a2eb839fddcba9f31d34ca7a13271b65d (patch) | |
tree | 518cb56ec5e01c7e20b44648cdb9e7c6c0e9d1a5 /wget/Pkgfile | |
parent | 362377f32b50d8663fac8a0ea1e69addf6fa9251 (diff) | |
download | opt-2fb1977a2eb839fddcba9f31d34ca7a13271b65d.tar.gz opt-2fb1977a2eb839fddcba9f31d34ca7a13271b65d.tar.bz2 opt-2fb1977a2eb839fddcba9f31d34ca7a13271b65d.tar.xz opt-2fb1977a2eb839fddcba9f31d34ca7a13271b65d.zip |
Recette de wget ajoutée.
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; +} |