[arch-commits] Commit in curl/trunk (ChangeLog PKGBUILD)
Paul Mattal
paul at archlinux.org
Sat Oct 3 21:23:38 UTC 2009
Date: Saturday, October 3, 2009 @ 17:23:37
Author: paul
Revision: 53923
upgpkg: curl 7.19.6-2
applied new config options per FS#15620
Modified:
curl/trunk/ChangeLog
curl/trunk/PKGBUILD
-----------+
ChangeLog | 7 ++++++-
PKGBUILD | 19 ++++++++++++++++---
2 files changed, 22 insertions(+), 4 deletions(-)
Modified: ChangeLog
===================================================================
--- ChangeLog 2009-10-03 21:17:43 UTC (rev 53922)
+++ ChangeLog 2009-10-03 21:23:37 UTC (rev 53923)
@@ -1,3 +1,8 @@
+2009-10-03 Robson Peixoto <robsonpeixoto at gmail.com>
+
+ * curl 7.19.6-2
+ * Compile with ca-path like Debian and Gentoo
+
2009-08-12 Eric Belanger <eric at archlinux.org>
* curl 7.19.6-1
@@ -2,3 +7,3 @@
* Upstream update
-
+
2009-05-18 Eric Belanger <eric at archlinux.org>
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2009-10-03 21:17:43 UTC (rev 53922)
+++ PKGBUILD 2009-10-03 21:23:37 UTC (rev 53923)
@@ -4,7 +4,7 @@
pkgname=curl
pkgver=7.19.6
-pkgrel=1
+pkgrel=2
pkgdesc="An URL retrival utility and library"
arch=('i686' 'x86_64')
url="http://curl.haxx.se"
@@ -17,8 +17,21 @@
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr --without-libidn --disable-ldap \
- --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt || return 1
+
+ # Thanks Debian and Gentoo =)
+ ./configure \
+ --with-random=/dev/urandom \
+ --prefix=/usr \
+ --mandir=/usr/share/man \
+ --disable-dependency-tracking \
+ --enable-ipv6 \
+ --disable-ldaps \
+ --disable-ldap \
+ --enable-manual \
+ --enable-versioned-symbols \
+ --with-ca-path=/etc/ssl/certs \
+ --without-libidn || return 1
+
make || return 1
make DESTDIR="${pkgdir}" install || return 1
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" || return 1
More information about the arch-commits
mailing list