view network/wget/wget.sh @ 106:70d465d61d60

network/wget: initial import, closes #1176
author David Demelier <markand@malikania.fr>
date Sat, 09 Mar 2019 14:43:58 +0100
parents
children 21e18b280dea
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.
#

: ${CHOST:=$(uname -m)-linux-musl}
: ${CBUILD:=$(uname -m)-linux-musl}
: ${CC:=gcc}
: ${CFLAGS:=-O2}
: ${SSL:=gnutls}       # upstream default
: ${NLS:=yes}
: ${UUID:=yes}

source ./wget.info

set -ex

if [ "$SSL" = "openssl" ]; then
	with_ssl="--with-ssl=openssl"
elif [ "$SSL" = "gnutls" ]; then
	with_ssl="--with-ssl=gnutls"
elif [ "$SSL" = "no" ]; then
	with_ssl="--without-ssl"
fi

if [ "$NLS" = "yes" ]; then
	with_nls="--enable-nls"
else
	with_nls="--disable-nls"
fi

if [ "$UUID" = "yes" ]; then
	with_uuid="--with-uuid"
else
	with_uuid="--without-uuid"
fi

rm -rf $PKGNAME-$PKGVERSION
tar xvaf $PKGNAME-$PKGVERSION.tar.lz
pushd $PKGNAME-$PKGVERSION

CC="$CC" \
CFLAGS="$CFLAGS" \
./configure \
	--build=$CBUILD \
	--host=$CHOST \
	--prefix=/usr \
	--without-included-libunistring \
	${with_nls} \
	${with_ssl} \
	${with_uuid}
make
make install DESTDIR=$DESTDIR

popd
rm -rf $PKGNAME-$PKGVERSION