diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2016-12-19 11:21:38 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-12-19 09:21:38 -0800 |
commit | 46436a09092760dc9d97838701d6b08521a0fc2e (patch) | |
tree | 73e28e70ca1d56c41b6eaa241e4e4f9ccb9e24d2 | |
parent | a2b4146e104fc00442b847306df2240d2bb6c0b6 (diff) | |
download | spack-46436a09092760dc9d97838701d6b08521a0fc2e.tar.gz spack-46436a09092760dc9d97838701d6b08521a0fc2e.tar.bz2 spack-46436a09092760dc9d97838701d6b08521a0fc2e.tar.xz spack-46436a09092760dc9d97838701d6b08521a0fc2e.zip |
GSL: Add latest version, update to AutotoolsPackage (#2630)
-rw-r--r-- | var/spack/repos/builtin/packages/gsl/package.py | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/var/spack/repos/builtin/packages/gsl/package.py b/var/spack/repos/builtin/packages/gsl/package.py index da17c4a330..f13a9a66e8 100644 --- a/var/spack/repos/builtin/packages/gsl/package.py +++ b/var/spack/repos/builtin/packages/gsl/package.py @@ -26,24 +26,18 @@ from spack import * -class Gsl(Package): +class Gsl(AutotoolsPackage): """The GNU Scientific Library (GSL) is a numerical library for C and C++ - programmers. It is free software under the GNU General Public - License. The library provides a wide range of mathematical - routines such as random number generators, special functions and - least-squares fitting. There are over 1000 functions in total with - an extensive test suite. + programmers. It is free software under the GNU General Public License. The + library provides a wide range of mathematical routines such as random + number generators, special functions and least-squares fitting. There are + over 1000 functions in total with an extensive test suite.""" - """ homepage = "http://www.gnu.org/software/gsl" - url = "http://mirror.switch.ch/ftp/mirror/gnu/gsl/gsl-2.1.tar.gz" + url = "http://mirror.switch.ch/ftp/mirror/gnu/gsl/gsl-2.3.tar.gz" + version('2.3', '905fcbbb97bc552d1037e34d200931a0') version('2.2.1', '3d90650b7cfe0a6f4b29c2d7b0f86458') - version('2.1', 'd8f70abafd3e9f0bae03c52d1f4e8de5') - version('2.0', 'ae44cdfed78ece40e73411b63a78c375') - version('1.16', 'e49a664db13d81c968415cd53f62bc8b') - - def install(self, spec, prefix): - configure('--prefix=%s' % prefix) - make() - make("install") + version('2.1', 'd8f70abafd3e9f0bae03c52d1f4e8de5') + version('2.0', 'ae44cdfed78ece40e73411b63a78c375') + version('1.16', 'e49a664db13d81c968415cd53f62bc8b') |