blob: 6728cd4051e678e50ed5b6d6ee7c961e4890fd6a (
plain)
1 # Description: A utility to deliver and manage a complete PKI configuration.
2 # URL: https://github.com/lfs-book/make-ca
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=make-ca
6 version=1.10
7 release=1
8 source=(https://github.com/lfs-book/make-ca/archive/v$version/$name-$version.tar.gz)
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 }
|