2006-02-23 15:26:10 +00:00
|
|
|
# Description: A tool for transfering files with URL syntax
|
2007-01-23 17:35:30 +00:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
# URL: http://curl.haxx.se
|
2008-06-15 15:05:51 +02:00
|
|
|
# Depends on: openssl, zlib
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=curl
|
2015-10-08 17:37:50 +02:00
|
|
|
version=7.45.0
|
2014-07-16 18:48:34 +02:00
|
|
|
release=1
|
2010-02-14 12:04:27 +01:00
|
|
|
source=(http://curl.haxx.se/download/$name-$version.tar.lzma)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2006-07-03 06:22:29 +00:00
|
|
|
./configure --prefix=/usr \
|
2008-01-29 10:23:21 +01:00
|
|
|
--mandir=/usr/man \
|
2011-08-03 11:17:01 +02:00
|
|
|
--enable-ipv6 \
|
|
|
|
--without-libidn \
|
2014-07-16 18:03:11 +02:00
|
|
|
--without-cyassl \
|
2012-11-30 17:05:38 +01:00
|
|
|
--enable-threaded-resolver \
|
|
|
|
--with-ca-bundle=/etc/ssl/cert.pem
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|