31 lines
741 B
Makefile
31 lines
741 B
Makefile
# $NetBSD: Makefile,v 1.3 2016/06/11 18:55:01 schmonz Exp $
|
|
|
|
DISTNAME= cpputest-3.8
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=cpputest/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
GITHUB_PROJECT= cpputest
|
|
|
|
MAINTAINER= schmonz@NetBSD.org
|
|
HOMEPAGE= http://cpputest.github.io/
|
|
COMMENT= Unit testing and mocking framework for C/C++
|
|
LICENSE= modified-bsd
|
|
|
|
PKGCONFIG_OVERRIDE+= cpputest.pc.in
|
|
|
|
#USE_CMAKE= yes
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT= ../configure
|
|
CONFIGURE_DIRS= cpputest_build
|
|
BUILD_DIRS= ${CONFIGURE_DIRS}
|
|
USE_TOOLS+= automake autoreconf pkg-config
|
|
USE_LANGUAGES= c c++
|
|
|
|
TEST_TARGET= check tdd
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC}/${CONFIGURE_DIRS} && autoreconf .. -fiv
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|