view network/curl/curl.sh @ 606:25cecc6dca48

vanilla: use POSIX shell and busybox tar
author David Demelier <markand@malikania.fr>
date Thu, 18 Jul 2019 07:26:43 +0200
parents bad483aace64
children 2929b2af4c15
line wrap: on
line source

#!/bin/sh
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# 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"
PKGOPTIONS="IDN2 IPV6 NGHTTP2 SSH SSL"

: ${CHOST:=$(uname -m)-linux-musl}
: ${CBUILD:=$(uname -m)-linux-musl}
: ${CC:=clang}
: ${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 xvf $PKGNAME-$PKGVERSION.tar.xz
	cd $PKGNAME-$PKGVERSION

	CC="$CC" \
	CFLAGS="$CFLAGS" \
	LDFLAGS="$LDFLAGS" \
	LIBS="$LIBS" \
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix= \
		--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/lib/libcurl.la

	cd ..
	rm -rf $PKGNAME-$PKGVERSION
}