blob: d20bce955ca5d655affba74177701b4f64f47df8 (
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
|
# Created by: ijliao
# $FreeBSD$
PORTNAME= libpeak
PORTVERSION= 0.1.2
CATEGORIES= devel
MASTER_SITES= SF/peak/${PORTNAME}/${PORTVERSION}
MAINTAINER= gahr@FreeBSD.org
COMMENT= Parallel Events and Asynchronous tasKing Library
ONLY_FOR_ARCHS= i386 amd64 sparc64
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
regression-test: build
( \
cd ${WRKSRC}/tests; \
alltests=`ls *.c | sed -e 's|\.c||g'`; \
${MAKE} $$alltests && ./test-suite.pl $$alltests \
)
.include <bsd.port.mk>
|