spack/var/spack/repos/builtin/packages/libzip/package.py
Eric 6ce6c79beb libzip: Add zlib dependency (#10270)
* libzip: Add zlib dependency

* libzip: Add version limit
2019-01-08 12:49:03 -06:00

19 lines
538 B
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 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')
depends_on('zlib@1.1.2:')