From 34b4e73936c17f1014ba377ec294c1630c8e0d4c Mon Sep 17 00:00:00 2001 From: Wesley Chan Date: Tue, 19 Oct 2021 16:03:13 +0800 Subject: [PATCH] New package: acme.sh-3.0.2 --- srcpkgs/acme.sh/template | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 srcpkgs/acme.sh/template diff --git a/srcpkgs/acme.sh/template b/srcpkgs/acme.sh/template new file mode 100644 index 000000000000..92092c41e3b5 --- /dev/null +++ b/srcpkgs/acme.sh/template @@ -0,0 +1,24 @@ +# Template file for 'acme.sh' +pkgname=acme.sh +version=3.0.2 +revision=1 +short_desc="Pure Unix shell script implementing ACME client protocol" +maintainer="Wesley Chan " +license="GPL-3.0-or-later" +homepage="https://github.com/acmesh-official/acme.sh" +distfiles="https://github.com/acmesh-official/acme.sh/archive/refs/tags/${version}.tar.gz" +checksum=d6cda672697fe02cfa2a61bf74ec1b472aa797b03baead6deec625158965cee0 + +do_install() { + vmkdir usr/share/acme.sh/deploy + vmkdir usr/share/acme.sh/dnsapi + vmkdir usr/share/acme.sh/notify + vmkdir usr/bin + + vinstall acme.sh 755 usr/share/acme.sh/ + vcopy deploy/*.sh usr/share/acme.sh/deploy/ + vcopy dnsapi/*.sh usr/share/acme.sh/dnsapi/ + vcopy notify/*.sh usr/share/acme.sh/notify/ + + ln -sf /usr/share/acme.sh/acme.sh ${DESTDIR}/usr/bin/acme.sh +}