7a277a2b8e
* small improvement to Arg(...) working on real numbers. * improved 'make test', no need to install before test any more. * VarList can now accept a second argument, a filter predicate. * Pattern matcher now allows extended prototypes, like PP(list_Contains("a")) <-- ... etcetera. * c-style tokenizer using CTokenizer() (DefaultTokenizer() switches back to the default tokenizer). * Great speed-up of function Assoc. * Christian Obrecht implemented the Rabin-Miller primality testing algorithm, which greatly improves the speed of IsPrime. * Orthogonal polynomials OrthoP, OrthoP,OrthoG,OrthoH,OrthoL, OrthoT,OrthoU implemented by Serge Winitzki. * various speedups, and a new memory manager, optimized for allocating many small blocks (which is the case in Yacas). * Changed the directory structure for the script files * Greatly improved Simplify function. * Added CurrentFile, CurrentLine functions * Implemented backquote mechanism: `(...) will substitute every @a with the evaluation of a (and if a is a function the function name is replaced). The end result is evaluated. see substitute.cpp for more details many more... see http://www.xs4all.nl/~apinkus/changes.html for the complete list.
23 lines
625 B
Makefile
23 lines
625 B
Makefile
# $NetBSD: Makefile,v 1.7 2001/12/19 01:09:25 dmcmahill Exp $
|
|
#
|
|
|
|
DISTNAME= yacas-1.0.48
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://www.xs4all.nl/~apinkus/backups/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.xs4all.nl/~apinkus/yacas.html
|
|
COMMENT= Yet Another Computer Algebra System
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/yacas.sh ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/emacs/site-lisp
|
|
${INSTALL_DATA} ${WRKSRC}/yacas.el ${PREFIX}/share/emacs/site-lisp
|
|
|
|
test: build
|
|
cd ${WRKSRC} && ${MAKE_ENV} ${MAKE_PROGRAM} test 2>&1 | \
|
|
tee ${WRKDIR}/tests.log
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|