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
46
47
48
49
50
51
|
# 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)
from spack.package import *
class Opennurbs(Package):
"""OpenNURBS is an open-source NURBS-based geometric modeling library
and toolset, with meshing and display / output functions.
"""
homepage = "https://github.com/OpenNURBS/OpenNURBS"
git = "https://github.com/OpenNURBS/OpenNURBS.git"
maintainers = ["jrood-nrel"]
version("develop", branch="develop")
version(
"percept",
sha256="d12a8f14f0b27d286fb7a75ab3c4e300f77d1fbb028326d1c8d28e4641605538",
url="https://github.com/PerceptTools/percept/raw/master/build-cmake/opennurbs-percept.tar.gz",
)
variant("shared", default=True, description="Build shared libraries")
# CMake installation method
def install(self, spec, prefix):
cmake_args = [self.define_from_variant("BUILD_SHARED_LIBS", "shared")]
cmake_args.extend(std_cmake_args)
with working_dir("spack-build", create=True):
cmake("..", *cmake_args)
make()
make("install")
# Pre-cmake installation method
@when("@percept")
def install(self, spec, prefix):
make(parallel=False)
# Install manually
mkdir(prefix.lib)
mkdir(prefix.include)
install("libopenNURBS.a", prefix.lib)
install_tree("zlib", join_path(prefix.include, "zlib"))
install("*.h", prefix.include)
|