6a221f4ed5
ACME v1 is removed. Bug fixes. fixed --preferred-chain more DNS APIs are supported.
34 lines
719 B
Makefile
34 lines
719 B
Makefile
# $NetBSD: Makefile,v 1.10 2021/06/12 07:04:46 nia Exp $
|
|
|
|
DISTNAME= acme.sh-2.9.0
|
|
PKGNAME= ${DISTNAME:S/acme.sh/acmesh/}
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=acmesh-official/}
|
|
GITHUB_PROJECT= acme.sh
|
|
GITHUB_TAG= ${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= https://acme.sh/
|
|
COMMENT= Let's Encrypt ACME client in shell script
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
DEPENDS+= socat-[0-9]*:../../net/socat
|
|
DEPENDS+= curl-[0-9]*:../../www/curl
|
|
|
|
#NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
REPLACE_SH+= acme.sh
|
|
|
|
INSTALLATION_DIRS= sbin
|
|
|
|
do-configure:
|
|
# empty for REPLACE_SH
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/acme.sh \
|
|
${DESTDIR}${PREFIX}/sbin/acme.sh
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|