2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 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-04-01 13:09:09 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-04-01 13:09:09 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Libzip(AutotoolsPackage):
|
|
|
|
"""libzip is a C library for reading, creating,
|
|
|
|
and modifying zip archives."""
|
|
|
|
|
|
|
|
homepage = "https://nih.at/libzip/index.html"
|
|
|
|
url = "https://nih.at/libzip/libzip-1.2.0.tar.gz"
|
|
|
|
|
|
|
|
version('1.2.0', '5c3372ab3a7897295bfefb27f745cf69')
|
2019-01-09 02:49:03 +08:00
|
|
|
|
|
|
|
depends_on('zlib@1.1.2:')
|