Packages/atk (#9002)

* initial atk update

* Add coreqs

* Fixed flake8 errors

* corrected gnome's version URLs

* Added correct list_url's

* Changed list_depth
This commit is contained in:
Tom Merrick
2018-08-16 18:11:52 -05:00
committed by Adam J. Stewart
parent e8e672972a
commit f5b4209543
3 changed files with 117 additions and 3 deletions

View File

@@ -25,23 +25,27 @@
from spack import *
class Atk(AutotoolsPackage):
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"
url = "http://ftp.gnome.org/pub/gnome/sources/atk/2.28/atk-2.28.1.tar.xz"
list_url = "http://ftp.gnome.org/pub/gnome/sources/atk"
list_depth = 1
version('2.28.1', 'dfb5e7474220afa3f4ca7e45af9f3a11')
version('2.20.0', '5187b0972f4d3905f285540b31395e20')
version('2.14.0', 'ecb7ca8469a5650581b1227d78051b8b')
depends_on('meson', type='build', when='@2.28.0:')
depends_on('glib')
depends_on('pkgconfig', type='build')
depends_on('gobject-introspection')
def url_for_version(self, version):
"""Handle atk's version-based custom URLs."""
"""Handle gnome's version-based custom URLs."""
url = 'http://ftp.gnome.org/pub/gnome/sources/atk'
return url + '/%s/atk-%s.tar.xz' % (version.up_to(2), version)
@@ -50,3 +54,19 @@ def setup_dependent_environment(self, spack_env, run_env, dependent_spec):
self.prefix.share)
run_env.prepend_path("XDG_DATA_DIRS",
self.prefix.share)
def install(self, spec, prefix):
with working_dir('spack-build', create=True):
meson('..', *std_meson_args)
ninja('-v')
ninja('install')
@when('@:2.27')
def install(self, spec, prefix):
configure('--prefix={0}'.format(prefix))
make()
if self.run_tests:
make('check')
make('install')
if self.run_tests:
make('installcheck')