27 lines
980 B
Bash
27 lines
980 B
Bash
# Template file for 'wget'
|
|
pkgname=wget
|
|
version=1.20.3
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="$(vopt_if ssl '--with-ssl=openssl') $(vopt_if gnutls '--with-ssl=gnutls')"
|
|
conf_files="/etc/wgetrc"
|
|
hostmakedepends="perl pkg-config"
|
|
makedepends="libidn-devel libuuid-devel pcre2-devel
|
|
$(vopt_if gnutls 'gnutls-devel') $(vopt_if ssl 'libressl-devel')"
|
|
depends="ca-certificates"
|
|
checkdepends="perl-HTTP-Daemon perl-IO-Socket-SSL"
|
|
short_desc="GNU wget download utility"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
#changelog="https://git.savannah.gnu.org/cgit/wget.git/plain/NEWS"
|
|
homepage="http://www.gnu.org/software/wget/wget.html"
|
|
distfiles="${GNU_SITE}/wget/wget-${version}.tar.gz"
|
|
checksum=31cccfc6630528db1c8e3a06f6decf2a370060b982841cfab2b8677400a5092e
|
|
|
|
build_options="gnutls ssl"
|
|
build_options_default="ssl"
|
|
vopt_conflict gnutls ssl
|
|
|
|
post_install() {
|
|
echo "ca_certificate=/etc/ssl/certs/ca-certificates.crt" >> ${DESTDIR}/etc/wgetrc
|
|
}
|