summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/redland-bindings/package.py
blob: 964f62108f023b7d61f8420533b9d24cd21b8387 (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
# 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)

import os

from spack.package import *


class RedlandBindings(AutotoolsPackage):
    """Redland Language Bindings for language APIs to Redland"""

    homepage = "https://librdf.org/"
    url = "https://download.librdf.org/source/redland-bindings-1.0.17.1.tar.gz"

    license("Apache-2.0")

    version("1.0.17.1", sha256="ff72b587ab55f09daf81799cb3f9d263708fad5df7a5458f0c28566a2563b7f5")
    version("1.0.16.1", sha256="065037ef61e9b78f642e75b9c2a42700eb1a87d903f2f9963d86591c7d916826")
    version("1.0.14.1", sha256="a8cc365fccf292c56d53341ecae57fe8727e5002e048ca25f6251b5e595aec40")

    depends_on("swig", type="build")
    depends_on("redland")
    depends_on("krb5")
    depends_on("libssh")
    extends("python")

    def configure_args(self):
        plib = self.spec["python"].prefix.lib
        plib64 = self.spec["python"].prefix.lib64
        mybase = self.prefix.lib
        if os.path.isdir(plib64) and not os.path.isdir(plib):
            mybase = self.prefix.lib64
        pver = "python{0}".format(self.spec["python"].version.up_to(2))
        myplib = join_path(mybase, pver, "site-packages")
        return ["--with-python", "PYTHON_LIB={0}".format(myplib)]