forked from Lainports/freebsd-ports
A tool for generating test cases using the PICT (Pairwise Independent Combinatorial Testing) method, based on a simple plain text format. WWW: https://github.com/Microsoft/pict PR: 231407 Submitted by: greg@unrelenting.technology
26 lines
528 B
Makefile
26 lines
528 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pict
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 3.7.1
|
|
CATEGORIES= textproc devel
|
|
|
|
MAINTAINER= greg@unrelenting.technology
|
|
COMMENT= Pairwise Independent Combinatorial Testing tool
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.TXT
|
|
|
|
USES= compiler:c++11-lang
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Microsoft
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_FILES= bin/pict \
|
|
lib/libpict.so
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pict ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_LIB} ${WRKSRC}/libpict.so ${STAGEDIR}${PREFIX}/lib
|
|
|
|
.include <bsd.port.mk>
|