diff options
author | davidovski <david@davidovski.xyz> | 2022-01-03 16:44:09 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-03 16:44:09 +0000 |
commit | 93d60f57780b9f1e9206f411e183bf28e6272334 (patch) | |
tree | d278fe89abb43e459cd80ebd4d67f2ba3d2e9901 /repo/core/make-ca.xibuild | |
parent | 924ee9d18af78b561fc78b0239b9ae38d5f808b3 (diff) |
added new files; git works
Diffstat (limited to 'repo/core/make-ca.xibuild')
-rw-r--r-- | repo/core/make-ca.xibuild | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/core/make-ca.xibuild b/repo/core/make-ca.xibuild new file mode 100644 index 0000000..ff1ed76 --- /dev/null +++ b/repo/core/make-ca.xibuild @@ -0,0 +1,12 @@ +#!/bin/bash + +DEPS=(p11-kit nss) + +SOURCE=https://github.com/djlucas/make-ca/releases/download/v1.7/make-ca-1.7.tar.xz +DESC="A utility to deliver and manage a complete PKI configuration" + +build () { + + make DESTDIR=$PKG_DEST install && + install -vdm755 $PKG_DEST/etc/ssl/local +} |