opt/make-ca/Pkgfile

18 lines
426 B
Plaintext
Raw Normal View History

2023-08-27 17:31:04 +02:00
# Description: A utility to deliver and manage a complete PKI configuration
2022-06-20 17:36:46 +02:00
# URL: https://github.com/lfs-book/make-ca
2023-08-27 17:31:04 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
name=make-ca
2023-09-27 06:51:03 +02:00
version=1.13
release=1
2022-06-20 17:36:46 +02:00
source=(https://github.com/lfs-book/make-ca/archive/v$version/$name-$version.tar.gz)
build() {
2023-08-27 17:31:04 +02:00
cd $name-$version
2023-08-27 17:31:04 +02:00
sed -i -e 's|^\(LIBEXECDIR=\).*|\1/usr/lib/make-ca|' Makefile
2023-08-27 17:31:04 +02:00
make
make DESTDIR=$PKG install
}