summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/rasqal/package.py
blob: bce50a0341670eeb4204247a6194828fbd9cb1da (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
# Copyright 2013-2024 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 Rasqal(AutotoolsPackage):
    """Rasqal is a free software / Open Source C library that
    handles Resource Description Framework (RDF) query language
    syntaxes, query construction and execution of queries returning
    results as bindings, boolean, RDF graphs/triples or syntaxes."""

    homepage = "https://librdf.org/"
    url = "https://download.librdf.org/source/rasqal-0.9.33.tar.gz"

    license("LGPL-2.1-or-later")

    version("0.9.33", sha256="6924c9ac6570bd241a9669f83b467c728a322470bf34f4b2da4f69492ccfd97c")
    version("0.9.32", sha256="eeba03218e3b7dfa033934d523a1a64671a9a0f64eadc38a01e4b43367be2e8f")
    version("0.9.31", sha256="28d743c9f1b0e5b0486ae4a945fa1e021c8495707e7adbfa0e232244b28b7fee")

    depends_on("raptor2")