Add gl2ps and qrupdate packages

This commit is contained in:
Adam J. Stewart
2016-03-11 16:57:37 -06:00
parent 6ec65cd4ca
commit 145390c7f3
3 changed files with 48 additions and 12 deletions

View File

@@ -0,0 +1,18 @@
from spack import *
class Qrupdate(Package):
"""qrupdate is a Fortran library for fast updates of QR and
Cholesky decompositions."""
homepage = "http://sourceforge.net/projects/qrupdate/"
url = "https://downloads.sourceforge.net/qrupdate/qrupdate-1.1.2.tar.gz"
version('1.1.2', '6d073887c6e858c24aeda5b54c57a8c4')
depends_on("openblas")
def install(self, spec, prefix):
configure('--prefix=%s' % prefix)
make()
make("install")