mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
309d322bbc
Release notes: https://github.com/Genivia/RE-flex/releases/tag/v2.1.2
33 lines
657 B
Makefile
33 lines
657 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= re-flex
|
|
PORTVERSION= 2.1.2
|
|
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)
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/lex.vim ${STAGEDIR}${DATADIR}/lex.vim
|
|
|
|
.include <bsd.port.mk>
|