
Seamless translation from 'target=<generic>' to either - target.family == <generic> (in methods) - 'target=<generic>:' (in directives) Also updated docs to show ranges in directives.
41 lines
1.5 KiB
Python
41 lines
1.5 KiB
Python
# Copyright 2013-2019 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 IsaacServer(CMakePackage):
|
|
"""In Situ Animation of Accelerated Computations: Server"""
|
|
|
|
homepage = "http://computationalradiationphysics.github.io/isaac/"
|
|
url = "https://github.com/ComputationalRadiationPhysics/isaac/archive/v1.3.0.tar.gz"
|
|
git = "https://github.com/ComputationalRadiationPhysics/isaac.git"
|
|
|
|
maintainers = ['ax3l']
|
|
|
|
version('develop', branch='dev')
|
|
version('master', branch='master')
|
|
version('1.4.0', '3ad05c8fad4673366077204c5d39285f')
|
|
version('1.3.3', '7aeebaf0c5a77e2cb9bea066750e369b')
|
|
version('1.3.2', 'c557daa74de52fd79e734c9758fca38b')
|
|
version('1.3.1', '7fe075f9af68d05355eaba0e224f20ca')
|
|
version('1.3.0', 'c8a794da9bb998ef0e75449bfece1a12')
|
|
|
|
# variant('gstreamer', default=False, description= \
|
|
# 'Support for RTP streams, e.g. to Twitch or Youtube')
|
|
|
|
depends_on('cmake@3.3:', type='build')
|
|
depends_on('jpeg', type='link')
|
|
depends_on('jansson', type='link')
|
|
depends_on('boost@1.56.0:', type='link')
|
|
depends_on('libwebsockets@2.1.1:', type='link')
|
|
# depends_on('gstreamer@1.0', when='+gstreamer')
|
|
|
|
# https://github.com/ComputationalRadiationPhysics/isaac/pull/70
|
|
patch('jpeg.patch', when='@:1.3.1')
|
|
patch('arm.patch', when='@:1.4.0 target=aarch64:')
|
|
|
|
root_cmakelists_dir = 'server'
|