blob: fcb7d0f34c39ce04e9680b46d8120c2547884103 (
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 openssl)
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
}
|