summaryrefslogtreecommitdiff
path: root/math/yacas/Makefile
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2000-02-20 14:40:34 +0000
committerdmcmahill <dmcmahill>2000-02-20 14:40:34 +0000
commit0ddc4a534504026f0fa2d48cef0f2c57bf623f6e (patch)
tree54a78d3b8ec69639c5c1dc581d362bb771bc072b /math/yacas/Makefile
parentc289fff4577329b8de0c6552362eb6e408b41a17 (diff)
downloadpkgsrc-0ddc4a534504026f0fa2d48cef0f2c57bf623f6e.tar.gz
Initial import of yacas-1.0.28
Yacas (Yet Another Computer Algebra System) is a small and highly flexible computer algebra language. The syntax uses a infix-operator grammar parser. The distribution contains a small library of mathematical functions, but its real strength is in the language in which you can easily write your own symbolic manipulation algorithms. It supports arbitrary precision arithmetic. The current version is 1.0.28 (the first release was 1.0.0). The language is very much in a finished state. Any code written for it should be usable in future versions. Also, the language should prove very easy to learn. Yacas is written in very clean c++ code, and is very portable . It can compile stand-alone, and is easily embeddable. Yacas contains a native arbitrary precision arithmetic module, but can also be used with GMP. Things implemented include: arbitrary precision, rational numeric, vector, complex, and matrix computations (including inverses and determinants and solving matrix equations), derivatives, solving, Taylor series, numerical solving (Newtons method), and a lot more non-mathematical algorithms. The language natively supports variables and user-defined functions. There is basic support for polynomials.
Diffstat (limited to 'math/yacas/Makefile')
-rw-r--r--math/yacas/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/math/yacas/Makefile b/math/yacas/Makefile
new file mode 100644
index 00000000000..8f710fc5557
--- /dev/null
+++ b/math/yacas/Makefile
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/02/20 14:40:34 dmcmahill Exp $
+#
+
+DISTNAME= yacas-1.0.28
+CATEGORIES= math
+MASTER_SITES= http://www.xs4all.nl/~apinkus/
+
+MAINTAINER= packages@netbsd.org
+HOMEPAGE= http://www.xs4all.nl/~apinkus/yacas.html
+
+GNU_CONFIGURE= YES
+
+post-patch:
+ cd ${WRKSRC}; ${SED} 's|@prefix@|${PREFIX}|g' yacas.sh.in > \
+ yacas.sh
+
+post-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/yacas.sh ${PREFIX}/bin
+
+.include "../../mk/bsd.pkg.mk"