summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/json-glib/package.py
blob: 187fcd20b0473d84d27049c2b14c834732f12e17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright 2013-2022 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.package import *


class JsonGlib(MesonPackage):
    """JSON-GLib is a library for reading and parsing JSON using GLib and
    GObject data types and API."""

    homepage = "https://developer.gnome.org/json-glib"
    url      = "https://ftp.gnome.org/pub/gnome/sources/json-glib/1.2/json-glib-1.2.8.tar.xz"
    list_url = "https://ftp.gnome.org/pub/gnome/sources/json-glib/"
    list_depth = 1

    version('1.6.6', sha256='96ec98be7a91f6dde33636720e3da2ff6ecbb90e76ccaa49497f31a6855a490e')
    version('1.5.2', sha256='ad08438327b6106dc040c0581477bdf1cd3daaa5d285920cc768b8627f746666', deprecated=True)
    version('1.4.4', sha256='720c5f4379513dc11fd97dc75336eb0c0d3338c53128044d9fabec4374f4bc47', deprecated=True)
    version('1.3.2', sha256='f6a80f42e63a3267356f20408bf91a1696837aa66d864ac7de2564ecbd332a7c', deprecated=True)
    version('1.2.8', sha256='fd55a9037d39e7a10f0db64309f5f0265fa32ec962bf85066087b83a2807f40a', deprecated=True)

    depends_on('glib')

    @when('@:1.5')
    def meson(self, spec, prefix):
        """Run the AutotoolsPackage configure phase"""
        configure('--prefix=' + prefix)

    @when('@:1.5')
    def build(self, spec, prefix):
        """Run the AutotoolsPackage build phase"""
        make()

    @when('@:1.5')
    def install(self, spec, prefix):
        """Run the AutotoolsPackage install phase"""
        make('install')