blob: aab2f8741cb0a7f36551984260e29f28e53fb559 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
DEPS=(p11-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
}
|