view network/wget/wget.sh @ 832:f1dc1bbc7afc

editors/vim: remove ghost dependency of gpm
author David Demelier <markand@malikania.fr>
date Sat, 24 Aug 2019 12:40:05 +0200
parents ae55d9077f70
children a133976e0783
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=wget
PKGVERSION=1.20.1
PKGREVISION=1
PKGLICENSE="GPLv3"
PKGSUMMARY="GNU network utility to retrieve files from the web"
PKGDOWNLOAD="https://ftp.gnu.org/gnu/$PKGNAME/$PKGNAME-$PKGVERSION.tar.lz"
PKGDEPENDS="lib/libunistring compression/zlib"
PKGOPTIONS="NLS SSL UUID"

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

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

if [ "$SSL" = "openssl" ]; then
	PKGDEPENDS="crypto/libressl $PKGDEPENDS"
	with_ssl="--with-ssl=openssl"
elif [ "$SSL" = "gnutls" ]; then
	PKGDEPENDS="crypto/gnutls $PKGDEPENDS"
	with_ssl="--with-ssl=gnutls"
else
	with_ssl="--without-ssl"
fi

if [ "$UUID" = "yes" ]; then
	PKGDEPENDS="core/util-linux $PKGDEPENDS"
	with_uuid="--with-uuid"
else
	with_uuid="--without-uuid"
fi

build()
{
	rm -rf $PKGNAME-$PKGVERSION
	tar xvf $PKGNAME-$PKGVERSION.tar.lz
	cd $PKGNAME-$PKGVERSION

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

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