diff options
Diffstat (limited to 'opt/uacme')
| -rw-r--r-- | opt/uacme/.footprint | 7 | ||||
| -rw-r--r-- | opt/uacme/.signature | 6 | ||||
| -rw-r--r-- | opt/uacme/MAKEPKG | 38 |
3 files changed, 51 insertions, 0 deletions
diff --git a/opt/uacme/.footprint b/opt/uacme/.footprint new file mode 100644 index 0000000..67e0ad6 --- /dev/null +++ b/opt/uacme/.footprint @@ -0,0 +1,7 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/uacme +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/uacme/ +-rwxr-xr-x root/root usr/share/uacme/nsupdate.sh +-rwxr-xr-x root/root usr/share/uacme/uacme.sh diff --git a/opt/uacme/.signature b/opt/uacme/.signature new file mode 100644 index 0000000..990ecc8 --- /dev/null +++ b/opt/uacme/.signature @@ -0,0 +1,6 @@ +RWTZ9IduCSQ/mJwikEi57HY2CCdlm7J0zj0jOdXPaifASq/8NjqexaMnUfgXtyr7YLSpBqQQnaWVmdJSbb1l7jliOMuZum/+vAU= + +SHA256 (MAKEPKG) = 913b6cdf02250ee77605ff3b6b93e302862d9dbc8befcb79fd9309876eeefa95 +SHA256 (.footprint) = f968ac5e8a24fe361e5ebe2e33dd427bb607ee1264405065caa750cec498a30f +SHA256 (1.8.1.tar.gz) = de7588577f8298dcb0d42dfaa9452a918fa692c4e165060207ac22f72fb0425d +SHA256 (uacme#1.8.1-1.pkg.tar.gz) = e98f614664c2c2fba0b833650099e404525aec7a57236a70df4f4ba99038f21a 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 |
