
Add language dependencies `c`, `cxx`, and `fortran`. These `depends_on` statements are auto-generated based on file extensions found in source tarballs/zipfiles. The `# generated` comment can be removed by package maintainers after validating correctness.
27 lines
1.0 KiB
Python
27 lines
1.0 KiB
Python
# 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("c", type="build") # generated
|
|
|
|
depends_on("raptor2")
|