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
40
41
42
43
44
45
|
# 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 Freesasa(AutotoolsPackage):
"""C-library for calculating Solvent Accessible Surface Areas"""
homepage = "http://freesasa.github.io"
url = "https://github.com/mittinatten/freesasa/releases/download/2.1.2/freesasa-2.1.2.zip"
git = "https://github.com/mittinatten/freesasa.git"
maintainers("RMeli")
version("2.1.2", sha256="a031c4eb8cd59e802d715a37ef72930ec2d90ec53dfcf1bea0b0255980490fd5")
variant("json", default=True, description="Build with support for JSON output")
variant("xml", default=True, description="Build with support for XML output")
variant("threads", default=True, description="Build with support for multiple threads")
depends_on("autoconf", type="build")
depends_on("automake", type="build")
depends_on("libtool", type="build")
depends_on("m4", type="build")
# https://github.com/mittinatten/freesasa/issues/88
depends_on("pkgconfig", type="build")
depends_on("json-c", when="+json")
depends_on("libxml2", when="+xml")
# Remove hard-coded -lc++ flag from Makefile, preventing successful
# compilation with GCC 11 (see #36566 for details)
patch("libcpp.patch", when="@2.1.2")
def autoreconf(self, spec, prefix):
autoreconf("--install", "--verbose", "--force")
def configure_args(self):
args = []
args.extend(self.enable_or_disable("json"))
args.extend(self.enable_or_disable("xml"))
args.extend(self.enable_or_disable("threads"))
return args
|