ports/math/moo/Makefile
Muhammad Moinur Rahman 1d0ebc326c math/moo: Sanitize MANPREFIX
Approved by:    portmgr (blanket)
2024-01-21 22:42:26 +01:00

27 lines
589 B
Makefile

PORTNAME= moo
PORTVERSION= 1.5
PORTREVISION= 2
CATEGORIES= math
MAINTAINER= skreuzer@FreeBSD.org
COMMENT= Calculator that accepts C-like syntax as input
WWW= https://github.com/raylai/moo
LICENSE= PD
USE_GITHUB= yes
GH_ACCOUNT= raylai
PLIST_FILES= bin/moo share/man/man1/moo.1.gz
.if exists(/usr/include/sys/capsicum.h) && exists(/usr/include/capsicum_helpers.h)
CFLAGS+= -DHAVE_CAPSICUM
.endif
MAKE_JOBS_UNSAFE= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/moo ${STAGEDIR}${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/moo.1 ${STAGEDIR}${PREFIX}/share/man/man1
.include <bsd.port.mk>