summaryrefslogtreecommitdiff
path: root/libre/parabola-keyring/PKGBUILD
blob: 573fd11ba0c8af17a38ac4248265b768e2f0f768 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Maintainer: Parabola automatic package builder <autobuilder@parabola.nu>


# NOTE: this PKGBUILD does not need to be edited manually
#       the package is normally built automatically by autobuilder
#       to generate a new keyring, push a new commit to hackers.git
#         eg: $ git commit --allow-empty --message=rebuild
#             $ git push parabola master
#       autobuilder will modify this PKGBUILD, build and publish the package,
#         and commit the modified PKGBUILD to abslibre


pkgname=parabola-keyring
pkgver=20210514
_gitver=6d23851907adb2b50654f84e5613af7664b41fc4
pkgrel=1
pkgdesc='Parabola GNU/Linux-libre PGP keyring'
arch=('any')
url='https://git.parabola.nu/hackers.git/'
license=('GPL')
makedepends=(parabola-hackers git)
install=$pkgname.install
source=("hackers-${_gitver}::git://git.parabola.nu/hackers.git#commit=${_gitver}")
sha512sums=('SKIP')


prepare() {
  cd "$srcdir"
  mv {,.}hackers-$_gitver
  mkdir .cachedir
  export PARABOLA_HACKERS_YAMLDIR="$PWD/.hackers-$_gitver/users"
  /usr/lib/parabola-hackers/pacman-make-keyring \
    V="$pkgver" \
    cachedir="$PWD/.cachedir"
}

package() {
  cd "$srcdir"
  bsdtar xf "$pkgname-$pkgver.tar.gz"
  cd "$srcdir/$pkgname-$pkgver"
  make PREFIX=/usr DESTDIR="${pkgdir}" install
}