summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 002a0eef713468d9579fafe8c4a7b149a0f41df0 (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
pkgname=heimdal
pkgdesc="Heimdal, an implementation of Kerberos and PKIX"
pkgver=7.8.0
pkgrel=1
url="https://www.heimdal.software/"
arch=(x86_64)
depends=(libcap-ng readline sqlite)
makedepends=(libldap perl-json)
optdepends=(libldap)
source=("https://github.com/heimdal/heimdal/releases/download/heimdal-$pkgver/heimdal-$pkgver.tar.gz"
        "https://github.com/heimdal/heimdal/releases/download/heimdal-$pkgver/heimdal-$pkgver.tar.gz.sig")
sha256sums=('fd87a207846fa650fd377219adc4b8a8193e55904d8a752c2c3715b4155d8d38'
            'SKIP')
validpgpkeys=('E65941B71CF3C459A34FA89C45E7572A28CD8CC8'
              'FB925C7AFA000F52B4BBD1ED9A077911BB7DC320')

build() {
  cd heimdal-$pkgver
  ./configure \
    --prefix="/usr/heimdal" \
    --sbindir="/usr/heimdal/bin" \
    --enable-hdb-openldap-module \
    --enable-kcm \
    ;
  make
}

package() {
  cd heimdal-$pkgver
  make DESTDIR="$pkgdir" install
}

# vim: ts=2:sw=2:et