Gmm++ is a generic C++ template library for sparse, dense and skyline matrices. It is built as a set of generic algorithms (mult, add, copy, sub-matrices, dense and sparse solvers ...) for any interfaced vector type or matrix type. It can be view as a glue library allowing cooperation between several vector and matrix types. However, basic sparse, dense and skyline matrix/vector types are built in Gmm++, hence it can be used as a standalone linear algebra library. Interfacing a vector or matrix type means writing "traits" objects called "linalg_traits", which describe their properties. The library offers predefined dense, sparse and skyline matrix types.
20 lines
494 B
Makefile
20 lines
494 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2010/03/19 21:06:22 jihbed Exp $
|
|
#
|
|
|
|
DISTNAME= gmm-4.0.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://download.gna.org/getfem/stable/
|
|
|
|
MAINTAINER= jihbed.research@gmail.com
|
|
HOMEPAGE= http://home.gna.org/getfem/gmm_intro.html
|
|
COMMENT= Gmm++ is a generic C++ template library for sparse
|
|
#LICENSE= # TODO: (see mk/license.mk)
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
USE_LANGUAGES= c c++
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|