blob: 47a05f56b3377e660f02447238c4c00d13596ec5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
PORTNAME= noti
DISTVERSION= 3.7.0
PORTREVISION= 11
CATEGORIES= deskutils
MAINTAINER= tagattie@FreeBSD.org
COMMENT= Trigger notifications when a process completes
WWW= https://github.com/variadico/noti
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= notify-send:devel/libnotify
USES= go:modules
USE_GITHUB= yes
GH_ACCOUNT= variadico
GO_TARGET= ./cmd/noti
PLIST_FILES= bin/noti share/man/man1/noti.1.gz share/man/man5/noti.yaml.5.gz
post-install:
${INSTALL_MAN} ${WRKSRC}/docs/man/dist/noti.1 ${STAGEDIR}${PREFIX}/share/man/man1/noti.1
${INSTALL_MAN} ${WRKSRC}/docs/man/dist/noti.yaml.5 ${STAGEDIR}${PREFIX}/share/man/man5/noti.yaml.5
.include <bsd.port.mk>
|