1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/devel/hhdate/Makefile
Tobias Kortkamp b0c363fe93 devel/hhdate: Update to 2.4
- Including bsd.port.options.mk is not necessary here, so remove it

Changes:	https://github.com/HowardHinnant/date/releases/tag/v2.4
PR:		225160
Submitted by:	Andreas Sommer <andreas.sommer87@googlemail.com> (maintainer)
2018-01-14 16:43:00 +00:00

41 lines
997 B
Makefile

# Created by: Andreas Sommer <andreas.sommer87@googlemail.com>
# $FreeBSD$
PORTNAME= hhdate
DISTVERSIONPREFIX= v
DISTVERSION= 2.4
CATEGORIES= devel
MAINTAINER= andreas.sommer87@googlemail.com
COMMENT= Date and time library based on the C++11 (and beyond) <chrono> header
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USE_GITHUB= yes
GH_ACCOUNT= HowardHinnant
GH_PROJECT= date
NO_ARCH= yes
NO_BUILD= yes
PLIST_FILES= include/hhdate/date.h
# TODO add timezone support when interest grows
OPTIONS_DEFINE= TEST
TEST_DESC= Build with minimal tests
TEST_ENV= ${MAKE_ENV} WRKDIR=${WRKDIR}
TEST_USES= compiler:c++11-lib
TEST_TEST_TARGET= test
USE_CXXSTD= c++11
post-extract-TEST-on:
${INSTALL_DATA} ${FILESDIR}/Makefile.in ${WRKSRC}/Makefile
${INSTALL_DATA} ${FILESDIR}/test-minimal.cpp ${WRKSRC}/test/test-minimal.cpp
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/include/hhdate
${INSTALL_DATA} ${WRKSRC}/include/date/date.h ${STAGEDIR}${PREFIX}/include/hhdate/
.include <bsd.port.mk>