core/curl/Pkgfile

23 lines
622 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
2015-02-26 17:33:40 +01:00
version=7.41.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 16:26:10 +01:00
build() {
cd $name-$version
2006-07-03 08:22:29 +02:00
./configure --prefix=/usr \
2008-01-29 10:23:21 +01:00
--mandir=/usr/man \
--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
}