CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
e2fsprogs: updated to 1.42.5 and aligned with upstream
[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
b751b192 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6dca1d21
JB
5# Depends on: openssl zlib
6
7name=curl
f6cfb4d0 8version=7.28.0
6dca1d21 9release=1
4e6a2fe6 10source=(http://curl.haxx.se/download/$name-$version.tar.lzma)
6dca1d21
JB
11
12build() {
de59bce0
JB
13 cd $name-$version
14
de59bce0
JB
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --mandir=/usr/man \
19 --enable-ipv6 \
f6cfb4d0
JB
20 --without-libidn \
21 --enable-threaded-resolver
de59bce0
JB
22
23 make
24 make DESTDIR=$PKG install
6dca1d21 25}