CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Merged changes from noeabi (72cbd18e791bd2edff0e8d23873136187f0cd936)
[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
83e7e2d0 4# Arch Maintainer: CRUX-ARM System Team, devel@crux-arm.nu
6dca1d21
JB
5# Depends on: openssl zlib
6
7name=curl
1f802c76 8version=7.20.0
6dca1d21
JB
9release=1
10source=(http://curl.haxx.se/download/$name-$version.tar.bz2)
11
12build() {
de59bce0
JB
13 cd $name-$version
14
15 echo "ac_cv_file___dev_urandom_=yes" > config.cache
16 ./configure --build=$CHOST \
17 --host=$CTARGET \
18 --prefix=/usr \
19 --mandir=/usr/man \
20 --enable-ipv6 \
21 --cache-file=config.cache
22
23 make
24 make DESTDIR=$PKG install
6dca1d21 25}