mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-10 04:25:18 +02:00
24 lines
797 B
Bash
24 lines
797 B
Bash
# Template file for 'acme.sh'
|
|
pkgname=acme.sh
|
|
version=3.1.0
|
|
revision=1
|
|
short_desc="Pure Unix shell script implementing ACME client protocol"
|
|
maintainer="Emil Miler <em@0x45.cz>"
|
|
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=5bc8a72095e16a1a177d1a516728bbd3436abf8060232d5d36b462fce74447aa
|
|
|
|
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
|
|
}
|