Add minizip package (#12835)
This commit is contained in:
parent
3eb0bcf4a1
commit
9d67ac2407
23
var/spack/repos/builtin/packages/minizip/package.py
Normal file
23
var/spack/repos/builtin/packages/minizip/package.py
Normal file
@ -0,0 +1,23 @@
|
||||
# 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 Minizip(AutotoolsPackage):
|
||||
"""C library for zip/unzip via zLib."""
|
||||
|
||||
homepage = "http://www.winimage.com/zLibDll/minizip.html"
|
||||
url = "https://zlib.net/fossils/zlib-1.2.11.tar.gz"
|
||||
|
||||
version('1.2.11', sha256='c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1')
|
||||
|
||||
configure_directory = 'contrib/minizip'
|
||||
|
||||
depends_on('automake', type='build')
|
||||
depends_on('autoconf', type='build')
|
||||
depends_on('libtool', type='build')
|
||||
depends_on('m4', type='build')
|
||||
depends_on('zlib')
|
Loading…
Reference in New Issue
Block a user