summaryrefslogtreecommitdiff
path: root/wget/Pkgfile
blob: da57c08b924d4190c82ee3cd362d2863f5f61ec7 (plain)
    1 # Description: A network utility for downloading content from the Web
    2 # URL:         http://www.gnu.org/software/wget/
    3 # Maintainer:  CRUX System Team, core-ports at crux dot nu
    4 # Depends on:  openssl
    5 
    6 name=wget
    7 version=1.12
    8 release=1
    9 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.lzma \
   10         wgetrc)
   11 
   12 build() {
   13     cd $name-$version
   14 
   15     ./configure --prefix=/usr \
   16                 --sysconfdir=/etc \
   17                 --mandir=/usr/man \
   18                 --disable-debug \
   19                 --disable-nls
   20 
   21     make
   22     make DESTDIR=$PKG install 
   23     install -D -m 644 $SRC/wgetrc $PKG/etc/wgetrc
   24 
   25     rm -r $PKG/usr/share
   26 }

Generated by cgit