core/curl/Pkgfile

20 lines
468 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A tool for transfering files with URL syntax
# Maintainer: Johannes Winkelmann, jw at tks6 dot net
# URL: http://curl.haxx.se
# Depends: openssl
name=curl
version=7.16.0
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 \
--enable-ipv6 \
--mandir=/usr/man
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/info
}