CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
wget: updated to 1.12 and fixed arch maintainer's line
authorJose V Beneyto <sepen@crux.nu>
Mon, 14 Dec 2009 21:12:18 +0000 (22:12 +0100)
committerJose V Beneyto <sepen@crux.nu>
Mon, 14 Dec 2009 21:12:18 +0000 (22:12 +0100)
wget/.md5sum
wget/Pkgfile

index 3abc2bcc43ab5319f6dfcf953798a5e296c45e45..c1786b9ecfe0bc80c03197ec1e29f3c7c51461c0 100644 (file)
@@ -1,2 +1,2 @@
-f5076a8c2ec2b7f334cb6e3059820f9c  wget-1.11.4.tar.bz2
+308a5476fc096a8a525d07279a6f6aa3  wget-1.12.tar.bz2
 fa717c9970a09e8ee1775a93e51fb694  wgetrc
index 7e19172279815ec0d882fa9fbc6d8689dd4c6b11..3fe5f150f35046143c8964a0306d695a3a4c0b2f 100644 (file)
@@ -1,25 +1,29 @@
 # Description: A network utility for downloading content from the Web
 # URL: http://www.gnu.org/software/wget/
 # Maintainer: CRUX System Team, core-ports at crux dot nu
-# Arch Maintainer: CRUX-ARM System
+# Arch Maintainer: CRUX-ARM System, crux-arm at mikeux dot dyndns dot org
 # Depends on: openssl
 
 name=wget
-version=1.11.4
+version=1.12
 release=1
 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 \
-  wgetrc)
+        wgetrc)
 
 build() {
   cd $name-$version
+
   ./configure --build=$CHOST \
               --host=$CTARGET \
               --prefix=/usr \
               --sysconfdir=/etc \
-              --mandir=$PKG/usr/man \
+              --mandir=/usr/man \
               --disable-debug \
               --disable-nls
+
   make
-  make prefix=$PKG/usr install.bin install.man
-  install -D -m 644 ../wgetrc $PKG/etc/wgetrc
+  make DESTDIR=$PKG install
+  install -D -m 0644 $SRC/wgetrc $PKG/etc/wgetrc
+
+  rm -r $PKG/usr/share
 }