36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
# 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)
|
|
|
|
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"
|
|
|
|
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)]
|