summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/atk/package.py
blob: 769805b22759520cf451d54e2dc8b115fd8ee995 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from spack import *

class Atk(Package):
    """ATK provides the set of accessibility interfaces that are
       implemented by other toolkits and applications. Using the ATK
       interfaces, accessibility tools have full access to view and
       control running applications."""
    homepage = "https://developer.gnome.org/atk/"
    url      = "http://ftp.gnome.org/pub/gnome/sources/atk/2.14/atk-2.14.0.tar.xz"

    version('2.14.0', 'ecb7ca8469a5650581b1227d78051b8b')

    depends_on("glib")

    def install(self, spec, prefix):
        configure("--prefix=%s" % prefix)
        make()
        make("install")