# Maintainer: Daniel Langbein _pkgname=gnupg _reponame=arch pkgname="de-p1st-$_pkgname" pkgver=0.0.1 pkgrel=1 pkgdesc="gnupg with configuration" arch=('any') url="https://codeberg.org/privacy1st/${_reponame}" license=('MIT') groups=() depends=('gnupg') makedepends=('git') optdepends=() provides=() conflicts=() replaces=() backup=() options=() install= changelog= source=("git+${url}.git" 'git+https://github.com/ioerror/duraconf.git') noextract=() sha256sums=('SKIP' 'SKIP') build() { cp duraconf/configs/gnupg/gpg.conf "${_reponame}/pkg/${pkgname}/gpg.conf.template" cd "${_reponame}/pkg/${pkgname}" # gpg.conf.template -> gpg.conf ./generate-gpg-conf.sh } package() { cd "${_reponame}/pkg/${pkgname}" install -Dm0644 gpg.conf "$pkgdir"/etc/gnupg/gpgconf.conf }