freebsd-ports/math/ised/Makefile
Martin Wilke 78ed03a1d2 ised is a command-line tool for generating number sequences and
arithmetic evaluation. Unlike big gui-based software (e.g. Mathematica,
Derive, Matlab, Octave,...) it is intended for use in shell scripting,
together with gnu core utilities.

Its main advantage is that all functions are generalized to operate
on one-dimensional arrays. It can be used for loop indexing (much
like seq), line-by-line arithmetic processing of files, floating
point math for shells that don't support it natively, or interactively,
as extended calculator.

WWW:	http://ised.sourceforge.net

PR:		ports/144914
Submitted by:	Charlie Kester <corky1951 at comcast.net>
2010-03-21 12:55:26 +00:00

33 lines
666 B
Makefile

# ex:ts=8
# Ports collection makefile for: ised
# Date created: 20 Mar 2010
# Whom: Charlie Kester <corky1951@comcast.net>
#
# $FreeBSD$
#
PORTNAME= ised
PORTVERSION= 2.2.2
CATEGORIES= math
MASTER_SITES= SF/${PORTNAME}
MAINTAINER= corky1951@comcast.net
COMMENT= A tool for generating number sequences and arithmetic evaluation
USE_BZIP2= yes
GNU_CONFIGURE= yes
.if !defined(NO_INSTALL_MANPAGES)
MAN1= ${PORTNAME}.1
.endif
PLIST_FILES= bin/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin
.if !defined(NO_INSTALL_MANPAGES)
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${MAN1PREFIX}/man/man1
.endif
.include <bsd.port.mk>