27 lines
991 B
Bash
27 lines
991 B
Bash
# Template file for 'wget'
|
|
pkgname=wget
|
|
version=1.21.1
|
|
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="libidn2-devel zlib-devel libuuid-devel pcre2-devel
|
|
$(vopt_if gnutls 'gnutls-devel') $(vopt_if ssl 'openssl-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=59ba0bdade9ad135eda581ae4e59a7a9f25e3a4bde6a5419632b31906120e26e
|
|
|
|
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
|
|
}
|