2884d5aa32
It already sets DISTNAME to a very nice unique name, do not set it yourself. Sponsored by: Absolight
35 lines
731 B
Makefile
35 lines
731 B
Makefile
# Created by: gahr
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= taskwarrior
|
|
PORTVERSION= 2.5.1
|
|
CATEGORIES= deskutils
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= Feature-rich command-line todo list manager
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libgnutls.so:security/gnutls
|
|
TEST_DEPENDS= faketime:devel/libfaketime
|
|
|
|
USES= compiler:c++11-lib cmake python:test shebangfix
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= taskwarrior
|
|
GH_PROJECT= task
|
|
|
|
CMAKE_ARGS+= -DTASK_DOCDIR:STRING=${DATADIR:S/${PREFIX}\///} \
|
|
-DTASK_MAN1DIR:STRING=man/man1 \
|
|
-DTASK_MAN5DIR:STRING=man/man5
|
|
|
|
SHEBANG_FILES= scripts/*/*.pl \
|
|
doc/rc/refresh \
|
|
|
|
do-test:
|
|
@cd ${WRKSRC}/test && \
|
|
${PYTHON_CMD} run_all --verbose && \
|
|
${PYTHON_CMD} problems
|
|
|
|
.include <bsd.port.mk>
|