diff options
Diffstat (limited to 'textproc/television/Makefile')
-rw-r--r-- | textproc/television/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/textproc/television/Makefile b/textproc/television/Makefile index e6229c23e512..e67c7639208b 100644 --- a/textproc/television/Makefile +++ b/textproc/television/Makefile @@ -1,6 +1,5 @@ PORTNAME= television -DISTVERSION= 0.11.9 -PORTREVISION= 2 +DISTVERSION= 0.13.3 CATEGORIES= textproc MAINTAINER= uzsolt@FreeBSD.org @@ -10,17 +9,26 @@ WWW= https://github.com/alexpasmantier/television LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -LIB_DEPENDS= libonig.so:devel/oniguruma +RUN_DEPENDS= bash:shells/bash \ + bat:textproc/bat \ + fd:sysutils/fd \ + git:devel/git USES= cargo USE_GITHUB= yes GH_ACCOUNT= alexpasmantier -PLIST_FILES= bin/television \ - bin/tv +PLIST_FILES= bin/${PORTNAME} \ + bin/tv \ + share/man/man1/${PORTNAME}.1.gz \ + share/man/man1/tv.1.gz post-install: - @(cd ${STAGEDIR}${PREFIX}/bin && \ - ${LN} tv television) + cd ${STAGEDIR}${PREFIX}/bin && \ + ${LN} tv ${PORTNAME} + ${INSTALL_MAN} ${WRKSRC}/man/tv.1 \ + ${STAGEDIR}${PREFIX}/share/man/man1/tv.1 + cd ${STAGEDIR}${PREFIX}/share/man/man1 && \ + ${LN} tv.1 television.1 .include <bsd.port.mk> |