moo is a simple calculator that accepts C-like syntax as input.
Calculations are done on expr, if given. Otherwise, the standard input is used.
Numbers can be entered in hexadecimal (0xbeef), decimal (1984), octal (007),
and binary (0b1001). All numerical operators (+, -, *, /, %), bit operators
(|, ^, &, ~, <<, >>), and logical operators (==, !=, <, >, <=, >=, !, &&, ||)
are supported.
WWW: http://cyth.net/~ray/moo/
PR: ports/111824
Submitted by: Steven Kreuzer <skreuzer at f2o.org>
2007-04-19 10:48:07 +00:00
|
|
|
# New ports collection makefile for: moo
|
|
|
|
# Date created: 05 Apr 2007
|
|
|
|
# Whom: Steven Kreuzer <skreuzer@f2o.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= moo
|
|
|
|
PORTVERSION= 1.3
|
|
|
|
CATEGORIES= math
|
2008-03-20 22:26:34 +00:00
|
|
|
MASTER_SITES= ${MASTER_SITE_OPENBSD}
|
|
|
|
MASTER_SITE_SUBDIR= distfiles
|
moo is a simple calculator that accepts C-like syntax as input.
Calculations are done on expr, if given. Otherwise, the standard input is used.
Numbers can be entered in hexadecimal (0xbeef), decimal (1984), octal (007),
and binary (0b1001). All numerical operators (+, -, *, /, %), bit operators
(|, ^, &, ~, <<, >>), and logical operators (==, !=, <, >, <=, >=, !, &&, ||)
are supported.
WWW: http://cyth.net/~ray/moo/
PR: ports/111824
Submitted by: Steven Kreuzer <skreuzer at f2o.org>
2007-04-19 10:48:07 +00:00
|
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
|
2009-03-28 01:16:37 +00:00
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
moo is a simple calculator that accepts C-like syntax as input.
Calculations are done on expr, if given. Otherwise, the standard input is used.
Numbers can be entered in hexadecimal (0xbeef), decimal (1984), octal (007),
and binary (0b1001). All numerical operators (+, -, *, /, %), bit operators
(|, ^, &, ~, <<, >>), and logical operators (==, !=, <, >, <=, >=, !, &&, ||)
are supported.
WWW: http://cyth.net/~ray/moo/
PR: ports/111824
Submitted by: Steven Kreuzer <skreuzer at f2o.org>
2007-04-19 10:48:07 +00:00
|
|
|
COMMENT= Calculator that accepts C-like syntax as input
|
|
|
|
|
|
|
|
PLIST_FILES= bin/moo
|
|
|
|
MAN1= moo.1
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/moo ${PREFIX}/bin/
|
|
|
|
${INSTALL_MAN} ${WRKSRC}/moo.1 ${MANPREFIX}/man/man1
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|