2ba39c13e3
A pass extension for managing one-time-password (OTP) tokens. Features: - managing and generating OTP tokens - inserting new OTP key URI - validating OTP URI - appending OTP URI to existing password files WWW: https://github.com/tadfisher/pass-otp PR: 236126 Submitted by: alex@xanderio.de (previous version) Reviewed by: krion Approved by: krion (mentor) Differential Revision: https://reviews.freebsd.org/D19434
41 lines
915 B
Makefile
41 lines
915 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pass-otp
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.2.0
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= alex@xanderio.de
|
|
COMMENT= Pass extension for managing one-time-password (OTP) tokens
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= bash:shells/bash \
|
|
pass:sysutils/password-store \
|
|
qrencode:graphics/libqrencode \
|
|
oathtool:security/oath-toolkit
|
|
TEST_DEPENDS= expect:lang/expect \
|
|
git:devel/git
|
|
|
|
USES= gmake shebangfix
|
|
USE_GITHUB= YES
|
|
GH_ACCOUNT= tadfisher
|
|
SHEBANG_FILES= otp.bash test/*.sh test/*t
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
MAKE_ENV= DESTDIR=${STAGEDIR} \
|
|
LIBDIR=${PREFIX}/libexec \
|
|
MANDIR=${MANPREFIX}/man \
|
|
BASHCOMPDIR=${PREFIX}/share/bash-completion/completions
|
|
|
|
TEST_TARGET= test
|
|
TEST_ARGS= SHELL=${LOCALBASE}/bin/bash
|
|
|
|
PLIST_FILES= man/man1/pass-otp.1.gz\
|
|
libexec/password-store/extensions/otp.bash \
|
|
share/bash-completion/completions/pass-otp
|
|
|
|
.include <bsd.port.mk>
|