2019-12-31 14:36:56 +08:00
|
|
|
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-08-06 05:05:12 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-08-06 05:05:12 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Fastjar(AutotoolsPackage):
|
|
|
|
"""Fastjar is a version of Sun's 'jar' utility, written entirely in C."""
|
|
|
|
|
|
|
|
homepage = "http://savannah.nongnu.org/projects/fastjar/"
|
|
|
|
url = "http://download.savannah.gnu.org/releases/fastjar/fastjar-0.98.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.98', sha256='f156abc5de8658f22ee8f08d7a72c88f9409ebd8c7933e9466b0842afeb2f145')
|
2017-08-06 05:05:12 +08:00
|
|
|
|
|
|
|
depends_on('zlib')
|