2019-02-21 01:08:42 +11:00
|
|
|
# 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
|
2020-05-31 19:54:27 +10:00
|
|
|
version=1.7
|
2019-02-21 01:08:42 +11:00
|
|
|
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
|
|
|
|
}
|