35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
# 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 Hadoop(Package):
|
|
"""The Apache Hadoop software library is a framework that
|
|
allows for the distributed processing of large data sets
|
|
across clusters of computers using simple programming models.
|
|
"""
|
|
|
|
homepage = "http://hadoop.apache.org/"
|
|
url = "http://mirrors.ocf.berkeley.edu/apache/hadoop/common/hadoop-3.1.1/hadoop-3.1.1.tar.gz"
|
|
|
|
version('3.1.1', '0b6ab06b59ae75f433de387783f19011')
|
|
version('2.9.0', 'b443ead81aa2bd5086f99e62e66a8f64')
|
|
|
|
depends_on('java', type='run')
|
|
|
|
def install(self, spec, prefix):
|
|
|
|
def install_dir(dirname):
|
|
install_tree(dirname, join_path(prefix, dirname))
|
|
|
|
install_dir('bin')
|
|
install_dir('etc')
|
|
install_dir('include')
|
|
install_dir('lib')
|
|
install_dir('libexec')
|
|
install_dir('sbin')
|
|
install_dir('share')
|