mirror of
https://git.freebsd.org/ports.git
synced 2025-05-05 16:07:38 -04:00
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
PORTNAME= translate-shell
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.9.7.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= Command line interface to translation engines
|
|
WWW= https://www.soimort.org/translate-shell/
|
|
|
|
LICENSE= UNLICENSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= gawk:lang/gawk
|
|
RUN_DEPENDS= bash:shells/bash \
|
|
gawk:lang/gawk \
|
|
gbase64:sysutils/coreutils
|
|
TEST_DEPENDS= curl:ftp/curl \
|
|
emacs:editors/emacs@nox \
|
|
rlwrap:devel/rlwrap
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= soimort
|
|
|
|
ALL_TARGET= build
|
|
TEST_ENV= LC_ALL=C.UTF-8
|
|
TEST_TARGET= test
|
|
NO_ARCH= yes
|
|
PLIST_FILES= bin/trans \
|
|
share/man/man1/trans.1.gz
|
|
|
|
OPTIONS_DEFINE= ASPELL FRIBIDI READLINE TEXT2SPEECH
|
|
|
|
TEXT2SPEECH_DESC= Enable Text-to-Speech functionality via espeak
|
|
|
|
ASPELL_RUN_DEPENDS= aspell:textproc/aspell
|
|
|
|
FRIBIDI_RUN_DEPENDS= fribidi:converters/fribidi
|
|
|
|
READLINE_RUN_DEPENDS= rlwrap:devel/rlwrap
|
|
|
|
TEXT2SPEECH_RUN_DEPENDS= espeak-ng:audio/espeak-ng
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/build/trans ${STAGEDIR}${PREFIX}/bin/trans
|
|
${INSTALL_MAN} ${WRKSRC}/man/trans.1 ${STAGEDIR}${PREFIX}/share/man/man1/trans.1
|
|
|
|
.include <bsd.port.mk>
|