mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
11181fc743
cyth.net no longer resolves so change WWW to point the project page on Github Reported by: se@
28 lines
580 B
Makefile
28 lines
580 B
Makefile
PORTNAME= moo
|
|
PORTVERSION= 1.5
|
|
PORTREVISION= 1
|
|
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 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}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|