blob: feffb4c45bc52ea59d253fc41cf16013149a9e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: A tool for transfering files with URL syntax
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: http://curl.haxx.se
# Depends on: openssl, zlib
name=curl
version=7.21.2
release=1
source=(http://curl.haxx.se/download/$name-$version.tar.lzma)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/man \
--enable-ipv6
make
make DESTDIR=$PKG install
}
|