summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libxcursor/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/libxcursor/package.py')
-rw-r--r--var/spack/repos/builtin/packages/libxcursor/package.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/libxcursor/package.py b/var/spack/repos/builtin/packages/libxcursor/package.py
index 215452ef52..ee5065bfa4 100644
--- a/var/spack/repos/builtin/packages/libxcursor/package.py
+++ b/var/spack/repos/builtin/packages/libxcursor/package.py
@@ -25,7 +25,7 @@
from spack import *
-class Libxcursor(Package):
+class Libxcursor(AutotoolsPackage):
"""libXcursor - X Window System Cursor management library."""
homepage = "http://cgit.freedesktop.org/xorg/lib/libXcursor"
@@ -40,9 +40,3 @@ class Libxcursor(Package):
depends_on('fixesproto', type='build')
depends_on('pkg-config@0.9.0:', type='build')
depends_on('util-macros', type='build')
-
- def install(self, spec, prefix):
- configure('--prefix={0}'.format(prefix))
-
- make()
- make('install')