CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
a00eb19bee098a9c5e2a46e0f8d835f9d502d996
[crossrootfs.git] / curl / Pkgfile
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, devel@crux-arm.nu
5 # Depends on: openssl zlib
6
7 name=curl
8 version=7.20.0
9 release=1
10 source=(http://curl.haxx.se/download/$name-$version.tar.bz2)
11
12 build() {
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
25 }