mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
e529189733
PR: 255916 Reviewed by: Daniel Engberg <daniel.engberg.lists@pyret.net> Approved by: new maintainer
35 lines
751 B
Makefile
35 lines
751 B
Makefile
# Created by: Filip Parag <filip@parag.rs>
|
|
|
|
PORTNAME= hetzner_ddns
|
|
DISTVERSION= 0.2.2
|
|
CATEGORIES= dns
|
|
|
|
MAINTAINER= filip@parag.rs
|
|
COMMENT= Hetzner Dynamic DNS Daemon
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
RUN_DEPENDS= jq:textproc/jq \
|
|
curl:ftp/curl
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= filiparag
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
share/man/man1/${PORTNAME}.1.gz \
|
|
"@sample etc/${PORTNAME}.conf.sample"
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.sh \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1.man \
|
|
${STAGEDIR}${MANPREFIX}/share/man/man1/${PORTNAME}.1
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf ${STAGEDIR}${PREFIX}/etc/${PORTNAME}.conf.sample
|
|
|
|
.include <bsd.port.mk>
|