core/curl/Pkgfile

23 lines
674 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A tool for transfering files with URL syntax
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
# URL: http://curl.haxx.se
2008-06-15 15:05:51 +02:00
# Depends on: openssl, zlib
2006-02-23 16:26:10 +01:00
name=curl
version=7.52.1
2017-01-25 03:07:31 +01:00
release=2
source=(http://curl.haxx.se/download/$name-$version.tar.lzma 0002-vtls-s-SSLEAY-OPENSSL.patch)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
patch -p1 -i $SRC/0002-vtls-s-SSLEAY-OPENSSL.patch
2006-07-03 08:22:29 +02:00
./configure --prefix=/usr \
--enable-ipv6 \
--without-libidn \
--without-cyassl \
--enable-threaded-resolver \
--with-ca-bundle=/etc/ssl/cert.pem
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
}