Add new package: phoenix (#18143)

This commit is contained in:
darmac 2020-08-20 09:33:37 +08:00 committed by GitHub
parent 0187884591
commit 1650824ef5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,24 @@
# 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 Phoenix(Package):
"""Apache Phoenix is a SQL skin over HBase delivered as a client-embedded
JDBC driver targeting low latency queries over HBase data."""
homepage = "https://github.com"
git = "https://github.com/apache/phoenix.git"
version('master', branch='master')
depends_on('java@8:', type=('build', 'run'))
depends_on('maven', type='build')
def install(self, spec, prefix):
mvn = which('mvn')
mvn('package', '-DskipTests')
install_tree('.', prefix)