mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-02 11:09:29 +00:00
75748cc79e
The taskd server provides a multi-user, multi-client repository for taskwarrior (deskutils/taskwarrior) 2.3.0 (and later) and any other clients. It runs continuously as a daemon process, and provides several services, primarily the synchronization of tasks between the clients.
27 lines
446 B
Makefile
27 lines
446 B
Makefile
# Created by: gahr
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= taskd
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= deskutils
|
|
MASTER_SITES= http://taskwarrior.org/download/
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= Multi-user server for taskwarrior
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls
|
|
|
|
USES= cmake:outsource
|
|
CFLAGS+= -g -O0
|
|
|
|
PLIST_FILES= bin/taskd \
|
|
bin/taskdctl \
|
|
man/man1/taskd.1.gz \
|
|
man/man5/taskdrc.5.gz
|
|
|
|
PORTDOCS= *
|
|
|
|
.include <bsd.port.mk>
|