blob: 2cd8a26c9b5d4f7833520c782dd9dff28c75bf77 (
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
30
31
|
# $FreeBSD$
PORTNAME= re-flex
PORTVERSION= 1.3.0
PORTREVISION= 1
DISTVERSIONPREFIX= v
CATEGORIES= textproc
MAINTAINER= gahr@FreeBSD.org
COMMENT= Regex-centric, fast and flexible scanner generator for C++
LICENSE= BSD3CLAUSE
CONFLICTS_INSTALL= reflex
USES= autoreconf compiler:c++11-lib gmake
USE_GITHUB= yes
GH_ACCOUNT= Genivia
GH_PROJECT= RE-flex
GNU_CONFIGURE= yes
TEST_TARGET= test
post-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/include/reflex
(cd ${WRKSRC}/include/reflex && \
${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/include/reflex)
.include <bsd.port.mk>
|