33 lines
1.1 KiB
Bash
33 lines
1.1 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/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=dnssec-anchors
|
|
pkgver=20190629
|
|
_trusted_key=trusted-key-${pkgver}.key
|
|
pkgrel=04
|
|
pkgdesc='DNSSEC trust anchors for the root zone'
|
|
url='https://data.iana.org/root-anchors/'
|
|
makedepends=('unbound')
|
|
source=('LICENSE' "https://sources.archlinux.org/other/packages/${pkgname}/${_trusted_key}")
|
|
|
|
package() {
|
|
cd "${srcdir}"
|
|
install -Dm644 ${_trusted_key} "${pkgdir}"/etc/trusted-key.key
|
|
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('custom:none')
|
|
|
|
sha256sums=(dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb # LICENSE
|
|
b01933ede7d505cac6bbee8c58027057d3a073581fa6cf595c352553dd07ee3c) # trusted-key-20190629.key
|
|
|
|
## 616c5a664d8fd6c520f71d9bf89fcc5ea8fc732c424aee66d2bc945ca3f24117 dnssec-anchors-20190629-04-x86_64.pkg.tar.lz
|
|
|