
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.
36 lines
926 B
Python
36 lines
926 B
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)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Rmlab(CMakePackage):
|
|
"""C++ File API for the reMarkable tablet"""
|
|
|
|
homepage = "https://github.com/ax3l/lines-are-beautiful"
|
|
git = "https://github.com/ax3l/lines-are-beautiful.git"
|
|
|
|
maintainers = ['ax3l']
|
|
|
|
version('develop', branch='develop')
|
|
|
|
variant('png', default=True,
|
|
description='Enable PNG conversion support')
|
|
|
|
# modern CMake
|
|
depends_on('cmake@3.7.0:', type='build')
|
|
# C++11
|
|
conflicts('%gcc@:4.7')
|
|
conflicts('%intel@:15')
|
|
conflicts('%pgi@:14')
|
|
|
|
depends_on('pngwriter@0.6.0:', when='+png')
|
|
|
|
def cmake_args(self):
|
|
args = [
|
|
self.define_from_variant('Rmlab_USE_PNG', 'png')
|
|
]
|
|
return args
|