blob: f5d5a8eb8abdc7b100d59476e107a53c72aac97f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
PORTNAME= libpeak
PORTVERSION= 0.1.2
PORTREVISION= 2
CATEGORIES= devel
MASTER_SITES= SF/peak/${PORTNAME}/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Parallel Events and Asynchronous tasKing Library
WWW= https://peak.sourceforge.net/
LICENSE= BSD2CLAUSE
ONLY_FOR_ARCHS= amd64 i386
USES= gmake libtool perl5 shebangfix
USE_PERL5= test
SHEBANG_FILES= tests/test-suite.pl
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
do-test:
( \
cd ${WRKSRC}/tests; \
alltests=`ls *.c | ${SED} -e 's|\.c||g'`; \
${MAKE} $$alltests && ${SETENV} PERL5LIB=. ./test-suite.pl $$alltests \
)
.include <bsd.port.mk>
|