mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
ae2857c968
One of the master keys depends on SHA-1, and nobody cares to update it. Let's ditch the master keys completely, sign and trust the builder key instead.
20 lines
676 B
Bash
20 lines
676 B
Bash
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
pkgname=archlinuxarm-keyring
|
|
pkgver=20240419
|
|
pkgrel=1
|
|
pkgdesc='Arch Linux ARM PGP keyring'
|
|
arch=('any')
|
|
url='http://archlinuxarm.org'
|
|
license=('GPL')
|
|
groups=('base-devel')
|
|
install="${pkgname}.install"
|
|
depends=('pacman')
|
|
source=('archlinuxarm'{.gpg,-trusted,-revoked})
|
|
sha256sums=('6ce771e853f04a38a5b533cb33e61f877b9b06b58b6db051eb8a15d737a2332f'
|
|
'f2a7250f2a2b77542f82f4219b2bae7895f27b3dcfdf350b497e2be306af776d'
|
|
'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855')
|
|
|
|
package() {
|
|
install -D -m0644 -t "${pkgdir}"/usr/share/pacman/keyrings/ 'archlinuxarm'{.gpg,-trusted,-revoked}
|
|
}
|