From mboxrd@z Thu Jan 1 00:00:00 1970 From: ericbavier@openmailbox.org Subject: [PATCH 07/14] gnu: Add ScaLAPACK. Date: Sat, 27 Jun 2015 22:45:44 -0500 Message-ID: <1435463151-32099-8-git-send-email-ericbavier@openmailbox.org> References: <1435463151-32099-1-git-send-email-ericbavier@openmailbox.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44916) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z93Wc-00014Q-Q0 for guix-devel@gnu.org; Sat, 27 Jun 2015 23:44:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z93WZ-0003fQ-4h for guix-devel@gnu.org; Sat, 27 Jun 2015 23:44:58 -0400 Received: from smtp19.openmailbox.org ([62.4.1.53]:39929) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z93WY-0003f3-VD for guix-devel@gnu.org; Sat, 27 Jun 2015 23:44:55 -0400 In-Reply-To: <1435463151-32099-1-git-send-email-ericbavier@openmailbox.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Cc: Eric Bavier From: Eric Bavier * gnu/packages/maths.scm (scalapack): New variable. --- gnu/packages/maths.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 765a111..b67ae9c 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -305,6 +305,35 @@ problems in numerical linear algebra.") (license (license:non-copyleft "file://LICENSE" "See LICENSE in the distribution.")))) +(define-public scalapack + (package + (name "scalapack") + (version "2.0.2") + (source + (origin + (method url-fetch) + (uri (string-append "http://www.netlib.org/scalapack/scalapack-" + version ".tgz")) + (sha256 + (base32 + "0p1r61ss1fq0bs8ynnx7xq4wwsdvs32ljvwjnx6yxr8gd6pawx0c")))) + (build-system cmake-build-system) + (inputs + `(("mpi" ,openmpi) + ("fortran" ,gfortran) + ("lapack" ,lapack))) ;for testing only + (arguments + `(#:configure-flags `("-DBUILD_SHARED_LIBS:BOOL=YES"))) + (home-page "http://www.netlib.org/scalapack/") + (synopsis "Library for scalable numerical linear algebra") + (description + "ScaLAPACK is a Fortran 90 library of high-performance linear algebra +routines on parallel distributed memory machines. ScaLAPACK solves dense and +banded linear systems, least squares problems, eigenvalue problems, and +singular value problems.") + (license (license:bsd-style "file://LICENSE" + "See LICENSE in the distribution.")))) + (define-public gnuplot (package (name "gnuplot") -- 2.2.1