summaryrefslogtreecommitdiff
path: root/repo/util/make-ca.xibuild
blob: a0062401815c922541b19fbe6622fa32864c8ba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

MAKEDEPS=(make )
DEPS=(libp11-kit nss)

PKG_VER=1.7
SOURCE=https://github.com/djlucas/make-ca/releases/download/v$PKG_VER/make-ca-$PKG_VER.tar.xz
DESC="A utility to deliver and manage a complete PKI configuration"

build () {
    make DESTDIR=$PKG_DEST install
}

package () {
    install -vdm755 $PKG_DEST/etc/ssl/local
}