mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
e7cebf7128
- Remove bogus USES=tar:xz - Switch to options helpers Approved by: portmgr blanket
34 lines
550 B
Makefile
34 lines
550 B
Makefile
# Created by: rene
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bf2c
|
|
PORTVERSION= 1.3.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang
|
|
|
|
MAINTAINER= rene@FreeBSD.org
|
|
COMMENT= Optimizing BrainF*ck to C compiler
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
PATCH_STRIP= -p1
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= rene0
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
PORTDOCS= README.md
|
|
|
|
PLIST_FILES= bin/bf2c bin/gen_bf
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|