Added
Link Here
|
1 |
# Created by: Filip Parag <filip@parag.rs> |
2 |
|
3 |
PORTNAME= hetzner_ddns |
4 |
DISTVERSION= 0.2.2 |
5 |
CATEGORIES= dns |
6 |
|
7 |
MAINTAINER= filip@parag.rs |
8 |
COMMENT= Hetzner Dynamic DNS Daemon |
9 |
|
10 |
LICENSE= BSD2CLAUSE |
11 |
|
12 |
RUN_DEPENDS= jq:textproc/jq \ |
13 |
curl:ftp/curl |
14 |
|
15 |
NO_ARCH= yes |
16 |
NO_BUILD= yes |
17 |
|
18 |
USE_GITHUB= yes |
19 |
GH_ACCOUNT= filiparag |
20 |
|
21 |
PLIST_FILES= bin/${PORTNAME} \ |
22 |
share/man/man1/${PORTNAME}.1.gz \ |
23 |
"@sample etc/${PORTNAME}.conf.sample" |
24 |
|
25 |
USE_RC_SUBR= ${PORTNAME} |
26 |
|
27 |
do-install: |
28 |
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.sh \ |
29 |
${STAGEDIR}${PREFIX}/bin/${PORTNAME} |
30 |
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1.man \ |
31 |
${STAGEDIR}${MANPREFIX}/share/man/man1/${PORTNAME}.1 |
32 |
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf ${STAGEDIR}${PREFIX}/etc/${PORTNAME}.conf.sample |
33 |
|
34 |
.include <bsd.port.mk> |