Add tecplot recipe (#12688)

* Add tecplot recipe

* break down description to pass lint

* fix format to match python 2.6 requiremnets

* importing os
This commit is contained in:
asmaahassan90 2019-09-04 16:25:43 +02:00 committed by Adam J. Stewart
parent 3181021c11
commit 5953336c3e

View file

@ -0,0 +1,30 @@
# 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 *
import os
class Tecplot(Package):
"""Tecplot 360 is a Computational Fluid Dynamics (CFD) and numerical
simulation software package used in post-processing simulation results.
It is also used in chemistry applications to visualize molecule structure
by post-processing charge density data."""
homepage = "https://www.tecplot.com/"
version('2017r1', '06a8057d33a519607720d4c621cd3f50', expand=False)
version('2018r2', 'd3cf54a7555e0259b7ba0d82fef23bc3', expand=False)
def url_for_version(self, version):
return "file://{0}/tecplot360ex{1}_linux64.sh".format(os.getcwd(), version)
def install(self, spec, prefix):
makefile = FileFilter(self.stage.archive_file)
makefile.filter('interactive=TRUE', 'interactive=FALSE')
makefile.filter('cpack_skip_license=FALSE', 'cpack_skip_license=TRUE')
set_executable(self.stage.archive_file)
installer = Executable(self.stage.archive_file)
installer('--prefix=%s' % prefix)