
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
52 lines
1.8 KiB
Python
52 lines
1.8 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)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Ftgl(CMakePackage):
|
|
"""Library to use arbitrary fonts in OpenGL applications."""
|
|
|
|
homepage = "https://github.com/frankheckenbach/ftgl"
|
|
git = "https://github.com/frankheckenbach/ftgl.git"
|
|
|
|
version('master', branch='master')
|
|
version('2.4.0', commit='483639219095ad080538e07ceb5996de901d4e74')
|
|
version('2.3.1', commit='3c0fdf367824b6381f29df3d8b4590240db62ab7')
|
|
|
|
# FIXME: Doc generation is broken in upstream build system
|
|
# variant('doc', default=False, description='Build the documentation')
|
|
variant('shared', default=True, description='Build as a shared library')
|
|
|
|
depends_on('cmake@2.8:', type='build')
|
|
# depends_on('doxygen', type='build', when='+doc') -- FIXME, see above
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('gl')
|
|
depends_on('glu')
|
|
depends_on('freetype@2.0.9:')
|
|
|
|
# Fix oversight in CMakeLists
|
|
patch('remove-ftlibrary-from-sources.diff', when='@:2.4.0')
|
|
|
|
def cmake_args(self):
|
|
spec = self.spec
|
|
args = ['-DBUILD_SHARED_LIBS={0}'.format(spec.satisfies('+shared'))]
|
|
if 'darwin' in self.spec.architecture:
|
|
args.append('-DCMAKE_MACOSX_RPATH=ON')
|
|
return args
|
|
|
|
# FIXME: See doc variant comment
|
|
# @run_after('build')
|
|
# def build_docs(self):
|
|
# if '+doc' in self.spec:
|
|
# cmake = self.spec['cmake'].command
|
|
# cmake('--build', '../spack-build', '--target', 'doc')
|
|
#
|
|
# @run_after('install')
|
|
# def install_docs(self):
|
|
# if '+doc' in self.spec:
|
|
# cmake = self.spec['cmake'].command
|
|
# cmake('--install', '../spack-build', '--target', 'doc')
|