cmaq: added new package at v5.3.1 (#16224)

Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
darmac 2020-04-22 14:56:13 +08:00 committed by GitHub
parent ac228050ab
commit 1e243023d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# Copyright 2013-2020 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 Cmaq(Package):
"""Code base for the U.S. EPA's Community Multiscale Air Quality Model
(CMAQ)."""
homepage = "http://www.epa.gov/CMAQ"
url = "https://github.com/USEPA/CMAQ/archive/CMAQv5.3.1_19Dec2019.tar.gz"
version('5.3.1', sha256='659156bba27f33010e0fdc157a8d33f3b5b779b95511e2ade870284b6bcb4bc8',
url='https://github.com/USEPA/CMAQ/archive/CMAQv5.3.1_19Dec2019.tar.gz')
version('5.3', sha256='e245c291c7e88d481b13f577d1af9aeb5aef4de8c59f7fa06fa41d19bb2ed18c',
url='https://github.com/USEPA/CMAQ/archive/CMAQv5.3_27Aug2019.tar.gz')
def install(self, spec, prefix):
install_tree('.', prefix)