1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00
freebsd-ports/devel/qt-maybe/Makefile
Pawel Pekala 54f740ec5d A set of simple(ish) C++ templates which implement sum and option types.
They serve a similar purpose to boost::variant and boost::optional but
are implemented on top of Qt's QVariant container.
2016-02-26 17:17:44 +00:00

28 lines
526 B
Makefile

# Created by: Pawel Pekala <pawel@FreeBSD.org>
# $FreeBSD$
PORTNAME= qt-maybe
PORTVERSION= 0.0.20151227
CATEGORIES= devel
MAINTAINER= pawel@FreeBSD.org
COMMENT= Implementation of sum/option types using QVariant
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GITHUB= yes
GH_ACCOUNT= robertknight
GH_TAGNAME= 52b21af
USE_QT5= core
NO_BUILD= yes
PLIST_FILES= include/Either.h include/Maybe.h
do-install:
(cd ${WRKSRC} && ${INSTALL_DATA} Either.h Maybe.h \
${STAGEDIR}${PREFIX}/include)
.include <bsd.port.mk>