4f52f39718
GNU Octave is a high-level language, primarily intended for numerical computations. It provides a convenient command line interface for solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with Matlab. It may also be used as a batch-oriented language. Octave has extensive tools for solving common numerical linear algebra problems, finding the roots of nonlinear equations, integrating ordinary functions, manipulating polynomials, and integrating ordinary differential and differential-algebraic equations. It is easily extensible and customizable via user-defined functions written in Octave's own language, or using dynamically loaded modules written in C++, C, Fortran, or other languages.
27 lines
816 B
Makefile
27 lines
816 B
Makefile
# $NetBSD: buildlink3.mk,v 1.3 2014/10/20 22:15:17 outpaddling Exp $
|
|
|
|
BUILDLINK_TREE+= octave
|
|
|
|
.if !defined(OCTAVE_BUILDLINK3_MK)
|
|
OCTAVE_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.octave+= octave>=3.0.0
|
|
BUILDLINK_ABI_DEPENDS.octave+= octave>=3.6.4nb4
|
|
BUILDLINK_PKGSRCDIR.octave?= ../../math/octave
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk"
|
|
|
|
.if !defined(PKG_OPTIONS.octave:) || !empty(PKG_OPTIONS.octave:Mhdf5)
|
|
.include "../../devel/hdf5/buildlink3.mk"
|
|
.endif
|
|
|
|
.include "../../audio/libsndfile/buildlink3.mk"
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../devel/ncurses/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../math/blas/buildlink3.mk"
|
|
.include "../../math/fftw/buildlink3.mk"
|
|
.include "../../math/lapack/buildlink3.mk"
|
|
.endif # OCTAVE_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -octave
|