65 lines
1.8 KiB
Bash
65 lines
1.8 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=wget
|
|
pkgver=1.21.3
|
|
pkgrel=01
|
|
pkgdesc='Network utility to retrieve files from the Web'
|
|
url='https://www.gnu.org/software/wget/wget.html'
|
|
arch=('x86_64')
|
|
groups=( jobbot )
|
|
depends=('glibc' 'zlib' 'gnutls' 'libidn2' 'libidn2.so' 'util-linux-libs' 'libuuid.so'
|
|
'libpsl' 'libpsl.so' 'pcre2' 'nettle' 'libnettle.so')
|
|
checkdepends=('perl-http-daemon' 'perl-io-socket-ssl' 'python')
|
|
optdepends=('ca-certificates: HTTPS downloads')
|
|
makedepends=('perl-http-daemon' 'perl-io-socket-ssl' 'python')
|
|
|
|
backup=('etc/wgetrc')
|
|
source=(https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.lz{,.sig})
|
|
|
|
prepare() {
|
|
cd ${pkgname}-${pkgver}
|
|
cat >> doc/sample.wgetrc <<EOF
|
|
|
|
# default root certs location
|
|
ca_certificate=/etc/ssl/certs/ca-certificates.crt
|
|
EOF
|
|
}
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-rpath \
|
|
--enable-nls \
|
|
--with-ssl=gnutls
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd ${pkgname}-${pkgver}
|
|
make check < /dev/null
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
license=('GPL3')
|
|
|
|
validpgpkeys=(
|
|
'AC404C1C0BF735C63FF4D562263D6DF2E163E1EA' # Giuseppe Scrivano <gscrivano@gnu.org>
|
|
'7845120B07CBD8D6ECE5FF2B2A1743EDA91A35B6' # Darshit Shah <darnir@gnu.org>
|
|
'1CB27DBC98614B2D5841646D08302DB6A2670428' # Tim Rühsen <tim.ruehsen@gmx.de>
|
|
)
|
|
|
|
sha256sums=(dbd2fb5e47149d4752d0eaa0dac68cc49cf20d46df4f8e326ffc8f18b2af4ea5 # wget-1.21.3.tar.lz
|
|
afcbccfb7ef4afaf738fc1ac02501cf4e160178654bf435dec2d3b0f14b082ee) # wget-1.21.3.tar.lz.sig
|