mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
959bccee28
- Add LICENSE - Enhance COMMENT - Depend on GnuTLS, necessary for the communication with the task server
29 lines
644 B
Makefile
29 lines
644 B
Makefile
# Created by: gahr
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= taskwarrior
|
|
PORTVERSION= 2.3.0
|
|
CATEGORIES= deskutils
|
|
MASTER_SITES= http://taskwarrior.org/download/
|
|
DISTNAME= task-${PORTVERSION}
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= Feature-rich command-line todo list manager
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls
|
|
|
|
WRKSRC= ${WRKDIR}/task-${PORTVERSION}
|
|
|
|
USES= cmake:outsource shebangfix
|
|
SHEBANG_FILES= scripts/*/*.pl \
|
|
scripts/*/*.rb \
|
|
scripts/*/*.py \
|
|
doc/rc/refresh
|
|
CMAKE_ARGS+= -DTASK_DOCDIR:STRING=${DATADIR:S/${PREFIX}\///} \
|
|
-DTASK_MAN1DIR:STRING=man/man1 \
|
|
-DTASK_MAN5DIR:STRING=man/man5
|
|
|
|
.include <bsd.port.mk>
|