From: Jose V Beneyto Date: Mon, 14 Dec 2009 12:09:57 +0000 (+0100) Subject: curl: updated to 7.19.7 and fixed identation X-Git-Url: http://gitweb/?a=commitdiff_plain;h=de59bce03b7c65791ea3ef8ee4c1f15424418a17;p=attic%2Fports%2Fcore-cross.git curl: updated to 7.19.7 and fixed identation --- diff --git a/curl/.md5sum b/curl/.md5sum index eb2c9cc..aa690ff 100644 --- a/curl/.md5sum +++ b/curl/.md5sum @@ -1 +1 @@ -426d161661dce70c8ea9ad8f553363a3 curl-7.19.5.tar.bz2 +79a8fbb2eed5464b97bdf94bee109380 curl-7.19.7.tar.bz2 diff --git a/curl/Pkgfile b/curl/Pkgfile index 6f5c682..f8c92ec 100644 --- a/curl/Pkgfile +++ b/curl/Pkgfile @@ -5,19 +5,21 @@ # Depends on: openssl zlib name=curl -version=7.19.5 +version=7.19.7 release=1 source=(http://curl.haxx.se/download/$name-$version.tar.bz2) build() { - cd $name-$version - echo "ac_cv_file___dev_urandom_=yes" > config.cache - ./configure --build=$CHOST \ - --host=$CTARGET \ - --prefix=/usr \ - --mandir=/usr/man \ - --enable-ipv6 \ - --cache-file=config.cache - make - make DESTDIR=$PKG install + cd $name-$version + + echo "ac_cv_file___dev_urandom_=yes" > config.cache + ./configure --build=$CHOST \ + --host=$CTARGET \ + --prefix=/usr \ + --mandir=/usr/man \ + --enable-ipv6 \ + --cache-file=config.cache + + make + make DESTDIR=$PKG install }