summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/gnutls/package.py
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2017-01-18 12:34:09 -0600
committerTodd Gamblin <tgamblin@llnl.gov>2017-01-18 10:34:09 -0800
commit02f92fc7f8a69618fcf91282222b8316ace9c4ae (patch)
treeb432d1f909dad49a464aba677ef7fca682ea9c04 /var/spack/repos/builtin/packages/gnutls/package.py
parent5812081b80301089a30e2087a32ddfcaa7c6b4e4 (diff)
downloadspack-02f92fc7f8a69618fcf91282222b8316ace9c4ae.tar.gz
spack-02f92fc7f8a69618fcf91282222b8316ace9c4ae.tar.bz2
spack-02f92fc7f8a69618fcf91282222b8316ace9c4ae.tar.xz
spack-02f92fc7f8a69618fcf91282222b8316ace9c4ae.zip
Massive conversion from Package to AutotoolsPackage (#2845)
* Massive conversion from Package to AutotoolsPackage * Forgot to convert p4est to AutotoolsPackage * Fix typo * Fix broken link in docs
Diffstat (limited to 'var/spack/repos/builtin/packages/gnutls/package.py')
-rw-r--r--var/spack/repos/builtin/packages/gnutls/package.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/gnutls/package.py b/var/spack/repos/builtin/packages/gnutls/package.py
index 5f7b0daf9b..87e83649a4 100644
--- a/var/spack/repos/builtin/packages/gnutls/package.py
+++ b/var/spack/repos/builtin/packages/gnutls/package.py
@@ -25,7 +25,7 @@
from spack import *
-class Gnutls(Package):
+class Gnutls(AutotoolsPackage):
"""GnuTLS is a secure communications library implementing the SSL,
TLS and DTLS protocols and technologies around them. It
provides a simple C language application programming interface
@@ -40,8 +40,3 @@ class Gnutls(Package):
version('3.3.9', 'ff61b77e39d09f1140ab5a9cf52c58b6')
depends_on("nettle")
-
- def install(self, spec, prefix):
- configure("--prefix=%s" % prefix)
- make()
- make("install")