d55fe73296
PR: 217829 Submitted by: andreas.sommer87@googlemail.com (maintainer)
35 lines
864 B
Makefile
35 lines
864 B
Makefile
# Created by: Andreas Sommer <andreas.sommer87@googlemail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kiss-templates
|
|
PORTVERSION= 0.19
|
|
CATEGORIES= textproc
|
|
|
|
MAINTAINER= andreas.sommer87@googlemail.com
|
|
COMMENT= Type safe "Keep it simple, stupid" text templates for C++
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= rbock
|
|
|
|
PLIST_FILES= bin/kiste2cpp \
|
|
include/kiste/cpp.h \
|
|
include/kiste/html.h \
|
|
include/kiste/kiste.h \
|
|
include/kiste/raw.h \
|
|
include/kiste/raw_type.h \
|
|
include/kiste/serializer_builder.h \
|
|
include/kiste/terminal.h
|
|
|
|
USES= cmake
|
|
|
|
OPTIONS_DEFINE= TEST
|
|
TEST_DESC= Build with unit tests
|
|
TEST_BUILD_DEPENDS= boost-libs>=1.55:devel/boost-libs
|
|
TEST_USES= python:2,build,test shebangfix
|
|
TEST_TEST_TARGET= test
|
|
SHEBANG_FILES= tests/comparison-based/generate.py tests/differ.py
|
|
|
|
.include <bsd.port.mk>
|