diff options
Diffstat (limited to 'opt/uacme/MAKEPKG')
| -rw-r--r-- | opt/uacme/MAKEPKG | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/opt/uacme/MAKEPKG b/opt/uacme/MAKEPKG new file mode 100644 index 0000000..27e5482 --- /dev/null +++ b/opt/uacme/MAKEPKG @@ -0,0 +1,38 @@ +#!/bin/mkpkg +# description: ACMEv2 client written in plain C with minimal dependencies +# url: https://github.com/ndilieto/uacme + +name=uacme +version=1.8.1 +release=1 +depends=(libressl curl) +source=(https://github.com/ndilieto/uacme/archive/refs/tags/upstream/$version.tar.gz) +sha256sums=( + "de7588577f8298dcb0d42dfaa9452a918fa692c4e165060207ac22f72fb0425d" +) + +build() { + # Tarball expands to uacme-upstream-$version + cd $name-upstream-$version + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --with-openssl \ + --disable-ualpn \ + --disable-maintainer-mode \ + --disable-docs + + make + make DESTDIR=$PKG install + + rm -rf $PKG/usr/share/doc +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
