mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
38243790a9
Changelog: https://github.com/pemistahl/grex/releases/tag/v1.4.5 PR: 277582 Approved by: diizzy (mentor) Differential Revision: https://reviews.freebsd.org/D44412
28 lines
599 B
Makefile
28 lines
599 B
Makefile
PORTNAME= grex
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.4.5
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= petteri.valkonen@iki.fi
|
|
COMMENT= Command-line tool for generating regular expressions from test cases
|
|
WWW= https://github.com/pemistahl/grex/
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= cargo
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= pemistahl
|
|
|
|
PLIST_FILES= bin/grex
|
|
PORTDOCS= README.md RELEASE_NOTES.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/grex
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|