blob: 81e8e98f67eb2d5461be17d1f6b1bf0f06c74eae (
plain) (
blame)
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
29
30
31
32
33
34
35
36
|
# Created by: gahr
# $FreeBSD$
PORTNAME= taskwarrior
PORTVERSION= 2.5.1
CATEGORIES= deskutils
DISTNAME= task-${PORTVERSION}
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>
|