2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-04-08 00:04:45 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-04-08 00:04:45 +08:00
|
|
|
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"
|
2018-07-23 15:00:15 +08:00
|
|
|
git = "https://github.com/ComputationalRadiationPhysics/isaac.git"
|
|
|
|
|
2017-12-06 05:27:56 +08:00
|
|
|
maintainers = ['ax3l']
|
2017-04-08 00:04:45 +08:00
|
|
|
|
2018-07-23 15:00:15 +08:00
|
|
|
version('develop', branch='dev')
|
|
|
|
version('master', branch='master')
|
2018-06-13 00:11:32 +08:00
|
|
|
version('1.4.0', '3ad05c8fad4673366077204c5d39285f')
|
2018-06-06 23:12:47 +08:00
|
|
|
version('1.3.3', '7aeebaf0c5a77e2cb9bea066750e369b')
|
2017-11-03 21:58:38 +08:00
|
|
|
version('1.3.2', 'c557daa74de52fd79e734c9758fca38b')
|
2017-07-07 16:51:09 +08:00
|
|
|
version('1.3.1', '7fe075f9af68d05355eaba0e224f20ca')
|
2017-04-08 00:04:45 +08:00
|
|
|
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')
|
2017-08-24 16:30:35 +08:00
|
|
|
depends_on('jpeg', type='link')
|
2017-06-12 22:01:17 +08:00
|
|
|
depends_on('jansson', type='link')
|
2017-11-03 21:58:38 +08:00
|
|
|
depends_on('boost@1.56.0:', type='link')
|
2017-07-14 23:28:15 +08:00
|
|
|
depends_on('libwebsockets@2.1.1:', type='link')
|
2017-04-08 00:04:45 +08:00
|
|
|
# depends_on('gstreamer@1.0', when='+gstreamer')
|
2017-07-19 00:58:19 +08:00
|
|
|
|
2018-06-13 00:11:32 +08:00
|
|
|
# https://github.com/ComputationalRadiationPhysics/isaac/pull/70
|
2017-11-03 21:58:38 +08:00
|
|
|
patch('jpeg.patch', when='@:1.3.1')
|
2017-08-24 16:30:35 +08:00
|
|
|
|
2017-07-19 00:58:19 +08:00
|
|
|
root_cmakelists_dir = 'server'
|