mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
38 lines
767 B
Bash
38 lines
767 B
Bash
|
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
||
|
_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}"
|
||
|
|
||
|
generate-gpg-conf.sh
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "${_reponame}/pkg/${pkgname}"
|
||
|
|
||
|
install -Dm0644 gpg.conf "$pkgdir"/etc/gnupg/gpgconf.conf
|
||
|
}
|