# Maintainer: Daniel Langbein <daniel@systemli.org>
_pkgname=gnupg
_reponame=arch
pkgname="de-p1st-$_pkgname"
pkgver=0.0.2
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() {
  # copy gpg.conf from duraconf harded configs git repo as gpg.conf.template
  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/skel/.gnupg/gpg.conf
  install -Dm0644 gpg-agent.conf "$pkgdir"/etc/skel/.gnupg/gpg-agent.conf
  install -Dm0644 99_gnupg.sh    "$pkgdir"/etc/profile.d/99_gnupg.sh
}