diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2019-02-21 01:08:42 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2019-02-21 01:08:42 +1100 |
commit | 3bb5c4a12be0324a66c23c0bbcda5f9d294addb3 (patch) | |
tree | 9dcfe79f6ffc9f4b99a16808b5044ef1037a9d17 /make-ca | |
parent | 85608de0ae4f99bcfb3958f9a29305693416b7aa (diff) | |
download | opt-3bb5c4a12be0324a66c23c0bbcda5f9d294addb3.tar.gz opt-3bb5c4a12be0324a66c23c0bbcda5f9d294addb3.tar.xz |
[notify] make-ca: new dependency for p11-kit
Diffstat (limited to 'make-ca')
-rw-r--r-- | make-ca/.footprint | 12 | ||||
-rw-r--r-- | make-ca/.signature | 5 | ||||
-rw-r--r-- | make-ca/Pkgfile | 17 |
3 files changed, 34 insertions, 0 deletions
diff --git a/make-ca/.footprint b/make-ca/.footprint new file mode 100644 index 000000000..ed761811f --- /dev/null +++ b/make-ca/.footprint @@ -0,0 +1,12 @@ +drwxr-xr-x root/root etc/ +-rw-r--r-- root/root etc/make-ca.conf.dist +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/make-ca/ +-rwx------ root/root usr/lib/make-ca/copy-trust-modifications +drwxr-xr-x root/root usr/sbin/ +-rwxr-xr-x root/root usr/sbin/make-ca +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/make-ca.8.gz diff --git a/make-ca/.signature b/make-ca/.signature new file mode 100644 index 000000000..107f14905 --- /dev/null +++ b/make-ca/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/opt.pub +RWSE3ohX2g5d/bHYtx9mYH2kbHQFmQZ/1NOAX9DL4jMltDfEBnPAYkESIlasC0dX5u1C+aPYHb0v/JLP1CvNOAwLiZB7yF0Seww= +SHA256 (Pkgfile) = 8a7d6685ba4cb286ce58e9c2696eb9068f46ab2184d286dff052795104e09d8f +SHA256 (.footprint) = 3b9c010175c27456e068b3119d491df84fdb75cfe9ce2f0fb6391fd23ea1db7b +SHA256 (make-ca-1.2.tar.xz) = 4d4d3572c77e49f84b0ca1f9bbabb3f597af9f6ade028ed78111369c2fd04445 diff --git a/make-ca/Pkgfile b/make-ca/Pkgfile new file mode 100644 index 000000000..8208620bd --- /dev/null +++ b/make-ca/Pkgfile @@ -0,0 +1,17 @@ +# Description: A utility to deliver and manage a complete PKI configuration. +# URL: https://github.com/djlucas/make-ca/ +# Maintainer: Danny Rawlins, crux at romster dot me + +name=make-ca +version=1.2 +release=1 +source=(https://github.com/djlucas/make-ca/releases/download/v$version/$name-$version.tar.xz) + +build() { + cd $name-$version + + sed -i -e 's|^\(LIBEXECDIR=\).*|\1/usr/lib/make-ca|' Makefile + + make + make DESTDIR=$PKG install +} |