mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
27 lines
522 B
Makefile
27 lines
522 B
Makefile
# Created by: andrew morton
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cxxtest
|
|
PORTVERSION= 4.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= hselasky@FreeBSD.org
|
|
COMMENT= Simple and powerful JUnit/CppUnit/xUnit-like framework for C++
|
|
|
|
LICENSE= LGPL3+
|
|
|
|
USES= gmake python:3.6+,run
|
|
|
|
USE_PYTHON= autoplist distutils noflavors
|
|
NO_ARCH= yes
|
|
|
|
WRKSRC_SUBDIR= python
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/include/cxxtest
|
|
${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/cxxtest/* \
|
|
${STAGEDIR}${PREFIX}/include/cxxtest/
|
|
|
|
.include <bsd.port.mk>
|