diff options
author | darmac <xiaojun2@hisilicon.com> | 2019-12-14 02:51:59 +0800 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-12-13 12:51:59 -0600 |
commit | 481a920fe89ea7f0e518b8cf815f966715b20ca3 (patch) | |
tree | e4c9d00a0e5713de49b0b326515f6095f2175017 | |
parent | 3344bb0a967c4217f6fa1d701b2c4dfb89d578aa (diff) | |
download | spack-481a920fe89ea7f0e518b8cf815f966715b20ca3.tar.gz spack-481a920fe89ea7f0e518b8cf815f966715b20ca3.tar.bz2 spack-481a920fe89ea7f0e518b8cf815f966715b20ca3.tar.xz spack-481a920fe89ea7f0e518b8cf815f966715b20ca3.zip |
add new package : activemq (#14142)
-rw-r--r-- | var/spack/repos/builtin/packages/activemq/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/activemq/package.py b/var/spack/repos/builtin/packages/activemq/package.py new file mode 100644 index 0000000000..0e62961909 --- /dev/null +++ b/var/spack/repos/builtin/packages/activemq/package.py @@ -0,0 +1,21 @@ +# 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 Activemq(Package): + """ + Apache ActiveMQ is a high performance Apache 2.0 licensed Message Broker + and JMS 1.1 implementation. + """ + + homepage = "https://archive.apache.org/dist/activemq" + url = "https://archive.apache.org/dist/activemq/5.14.0/apache-activemq-5.14.0-bin.tar.gz" + + version('5.14.0', sha256='81c623465af277dd50a141a8d9308d6ec8e1b78d9019b845873dc12d117aa9a6') + + def install(self, spec, prefix): + install_tree('.', prefix) |