
Example replacement: ``` '-D(\w+)(:BOOL)?=\{0\}'\.\s*format\s*\(\s*'(ON|YES|true|TRUE)' if '\+(\w+)' in (self\.)?spec else '(OFF|NO|false|FALSE)'\) ``` with ``` self.define_from_variant('\1', '\4') ``` This will cause failures if any variants were misspelled: I have already caught two packages with nonexistent variants.
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
# Copyright 2013-2021 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)
|
|
|
|
|
|
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)
|