pkgsrc-wip/givaro/Makefile
Emil Sköldberg 63e9172e42 Givaro is a C++ library for arithmetic and algebraic computations. Its
main features are implementations of the basic arithmetic of many
mathematical entities: Primes fields, Extensions Fields, Finite
Fields, Finite Rings, Polynomials, Algebraic numbers, Arbitrary
precision integers and rationals (C++ wrappers over gmp) It also
provides data-structures and templated classes for the manipulation of
basic algebraic objects, such as vectors, matrices (dense, sparse,
structured), univariate polynomials (and therefore recursive
multivariate). It contains different program modules and is fully
compatible with the LinBox linear algebra library and the Athapascan
environment, which permits parallel programming.
2005-11-09 11:22:05 +00:00

37 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2005/11/09 11:22:05 emil_s Exp $
#
DISTNAME= givaro-3.1
PKGNAME= givaro-${VERSION}
CATEGORIES= math
MASTER_SITES= http://www-lmc.imag.fr/Logiciels/givaro/
MAINTAINER= emil@math.su.se
HOMEPAGE= http://www-lmc.imag.fr/Logiciels/givaro/
COMMENT= C++ library for arithmetic and algebraic computations
VERSION= 3.1.3
WRKSRC= ${WRKDIR}/givaro-${VERSION}
USE_PKGLOCALEDIR= yes
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
USE_LANGUAGES= c++
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
post-install:
${INSTALL_DATA_DIR} ${EGDIR}/FiniteField
cd ${WRKSRC}/examples/FiniteField && ${INSTALL_DATA} *.C ${EGDIR}/FiniteField
${INSTALL_DATA_DIR} ${EGDIR}/Integer
cd ${WRKSRC}/examples/Integer && ${INSTALL_DATA} *.C ${EGDIR}/Integer
${INSTALL_DATA_DIR} ${EGDIR}/Polynomial
cd ${WRKSRC}/examples/Polynomial && ${INSTALL_DATA} *.C ${EGDIR}/Polynomial
${INSTALL_DATA_DIR} ${EGDIR}/Rational
cd ${WRKSRC}/examples/Rational && ${INSTALL_DATA} *.C ${EGDIR}/Rational
.include "../../devel/gmp/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"