blob: 5b88950d7987382b3baac067ade2c71d67044dfb (
plain)
1 # Description: A utility to deliver and manage a complete PKI configuration.
2 # URL: https://github.com/djlucas/make-ca/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=make-ca
6 version=1.5
7 release=1
8 source=(https://github.com/djlucas/make-ca/releases/download/v$version/$name-$version.tar.xz)
9
10 build() {
11 cd $name-$version
12
13 sed -i -e 's|^\(LIBEXECDIR=\).*|\1/usr/lib/make-ca|' Makefile
14
15 make
16 make DESTDIR=$PKG install
17 }
|