core/curl/Pkgfile

19 lines
453 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
2009-11-06 10:46:02 +01:00
version=7.19.7
2006-02-23 16:26:10 +01:00
release=1
source=(http://curl.haxx.se/download/$name-$version.tar.bz2)
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
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
}