35 lines
1.6 KiB
Python
35 lines
1.6 KiB
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
class GnomeCommon(AutotoolsPackage):
|
|
"""Module containing various files needed to bootstrap GNOME modules
|
|
built from git."""
|
|
|
|
homepage = "https://gitlab.gnome.org/GNOME"
|
|
url = "https://github.com/GNOME/gnome-common/archive/3.18.0.tar.gz"
|
|
|
|
version('3.18.0', sha256='8407fd8786a44c9ce47987de0906d9266492195df9251a089afaa06cc65c72d8')
|
|
version('3.14.0', sha256='6ba2990ae52f54adf90626a8e04c41e58631870ed1b28088bb670cdc1eff22c7')
|
|
version('3.12.0', sha256='b1dd2651900e701d3b732177ab633a35c8608e06c2ae78910130e5cbbda3b204')
|
|
version('3.10.0', sha256='a0b711c2316f754498a07d313e0e0373a663b4af7e6a2007bea512a8ec573176')
|
|
version('3.7.4', sha256='e68a7c028c50d3cfd51809cab25521334a4759518950ead597f880c71aa81cd2')
|
|
version('3.6.0', sha256='bfc79887f3f9aff5a575559b2eff7e7968b9155bf1666be7f98c7046d4ba9e7e')
|
|
version('3.5.91', sha256='434c84c3b3d63f808cb639a90eb7e4d727e27c95b3f24f0c32406a6f178f89a8')
|
|
version('3.5.5', sha256='a8e0c6ffaa6224a417480bc95e05d0bff62bcb2a44c36f3581cc3a86edbe9626')
|
|
version('3.4.0.1', sha256='8829fad03100358b69dfbab71287811c0fb3d76781efa01f931aaaf1fba0299c')
|
|
|
|
depends_on('m4', type='build')
|
|
depends_on('autoconf', type='build')
|
|
depends_on('automake', type='build')
|
|
depends_on('libtool', type='build')
|
|
|
|
def autoreconf(self, spec, prefix):
|
|
autoreconf = which('autoreconf')
|
|
autoreconf('-ifv')
|