279c175a6a
Lush is an object-oriented Lisp interpreter/compiler with features designed to please people who want to prototype large numerical applications. Lush includes an extensive library of vector/matrix/tensor manipulation, numerous numerical libraries (including GSL, LAPACK, and BLAS), a set of graphic functions, a simple GUI toolkit, and interfaces to various graphic and multimedia libraries such as OpenGL, SDL, Video4Linux, and ALSA (video/audio grabbing), and others. Lush is an ideal frontend script language for programming projects written in C or other languages. Lush also has libraries for Machine Learning, Neural Nets and statistical estimation (which are the main interests of the authors).
28 lines
796 B
Makefile
28 lines
796 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2006/08/23 22:01:00 wiz Exp $
|
|
|
|
DISTNAME= lush-1.1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=lush/}
|
|
|
|
MAINTAINER= dauphin@enst.fr
|
|
HOMEPAGE= http://lush.sourceforge.net/
|
|
COMMENT= Lisp interpreter/compiler with a seamless interface to C
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake
|
|
USE_LIBTOOL= yes
|
|
|
|
CONFIGURE_ARGS+= --without-bfd
|
|
|
|
post-install:
|
|
${RM} ${PREFIX}/share/lush/src/*c.orig
|
|
|
|
.include "../../math/gsl/buildlink3.mk"
|
|
.include "../../math/lapack/buildlink3.mk"
|
|
.include "../../math/blas/buildlink3.mk"
|
|
.include "../../devel/SDL/buildlink3.mk"
|
|
.include "../../graphics/MesaLib/buildlink3.mk"
|
|
.include "../../audio/libaudiofile/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/x11.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|