# HG changeset patch # User David Demelier # Date 1553022300 -3600 # Node ID 6452b7ac91ac96ea41a0ffe43beedabbcb5ca8f6 # Parent 96cc0131586af9bd6a21e55549c80b066ce14abf network/curl: initial import, closes #1139 diff -r 96cc0131586a -r 6452b7ac91ac network/curl/curl.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/network/curl/curl.sh Tue Mar 19 20:05:00 2019 +0100 @@ -0,0 +1,106 @@ +#!/bin/sh +# +# Copyright (c) 2019 David Demelier +# +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +# + +PKGNAME=curl +PKGVERSION=7.64.0 +PKGREVISION=1 +PKGLICENSE="MIT" +PKGSUMMARY="command line tool for transferring data with URLs" +PKGDOWNLOAD="https://curl.haxx.se/download/$PKGNAME-$PKGVERSION.tar.xz" +#PKGDEPENDS="category/foo category/bar" +PKGOPTIONS="IDN2 IPV6 NGHTTP2 SSH SSL" + +: ${CHOST:=$(uname -m)-linux-musl} +: ${CBUILD:=$(uname -m)-linux-musl} +: ${CC:=gcc} +: ${CFLAGS:=-O2} +: ${LDFLAGS:=} +: ${LIBS:=} +: ${IDN2:=yes} +: ${IPV6:=yes} +: ${NGHTTP2:=yes} +: ${SSH:=yes} +: ${SSL:=yes} + +if [ "$IDN2" = "yes" ]; then + PKGDEPENDS="core/libidn2 $PKGDEPENDS" + with_idn2="--with-libidn2" +else + with_idn2="--without-libidn2" +fi + +if [ "$IPV6" = "yes" ]; then + with_ipv6="--enable-ipv6" +else + with_ipv6="--disable-ipv6" +fi + +if [ "$NGHTTP2" = "yes" ]; then + PKGDEPENDS="network/nghttp2 $PKGDEPENDS" + with_nghttp2="--with-nghttp2" +else + with_nghttp2="--without-nghttp2" +fi + +if [ "$SSH" = "yes" ]; then + PKGDEPENDS="lib/libssh2 $PKGDEPENDS" + with_ssh="--with-libssh2" +else + with_ssh="--without-libssh2" +fi + +if [ "$SSL" = "yes" ]; then + PKGDEPENDS="network/openssl $PKGDEPENDS" + with_ssl="--with-ssl" +else + with_ssl="--without-ssl" +fi + +build() +{ + rm -rf $PKGNAME-$PKGVERSION + tar xvaf $PKGNAME-$PKGVERSION.tar.xz + pushd $PKGNAME-$PKGVERSION + + CC="$CC" \ + CFLAGS="$CFLAGS" \ + LDFLAGS="$LDFLAGS" \ + LIBS="$LIBS" \ + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --disable-static \ + --enable-shared \ + --with-ca-bundle=/etc/ssl/cert.pem \ + --without-cyassl \ + --without-gnutls \ + --without-mbedtls \ + --without-polarssl \ + --without-wolfssl \ + $with_idn2 \ + $with_ipv6 \ + $with_nghttp2 \ + $with_ssh \ + $with_ssl + make + make install DESTDIR=$DESTDIR + rm -f $DESTDIR/usr/lib/libcurl.la + + popd + rm -rf $PKGNAME-$PKGVERSION +}