CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Imported core-cross ports from 2.5
[crossrootfs.git] / curl / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: A tool for transfering files with URL syntax
2# URL: http://curl.haxx.se
3# Maintainer: CRUX System Team, core-ports at crux dot nu
4# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
5# Depends on: openssl zlib
6
7name=curl
8version=7.19.5
9release=1
10source=(http://curl.haxx.se/download/$name-$version.tar.bz2)
11
12build() {
13 cd $name-$version
14 echo "ac_cv_file___dev_urandom_=yes" > config.cache
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --mandir=/usr/man \
19 --enable-ipv6 \
20 --cache-file=config.cache
21 make
22 make DESTDIR=$PKG install
23}