core/curl/Pkgfile

21 lines
534 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
2012-10-11 13:00:56 +02:00
version=7.28.0
2011-09-16 10:12:43 +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 \
--enable-threaded-resolver
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
}