35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# Copyright 2013-2020 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 Czmq(AutotoolsPackage):
|
|
""" A C interface to the ZMQ library """
|
|
homepage = "http://czmq.zeromq.org"
|
|
url = "https://github.com/zeromq/czmq/archive/v4.0.2.tar.gz"
|
|
|
|
version('4.1.1', sha256='b7623433547aa4b6e79722796c27ebc7c0470fea4204e920fd05e717c648f889')
|
|
version('4.0.2', sha256='794f80af7392ec8d361ad69646fc20aaa284d23fef92951334009771a732c810')
|
|
version('3.0.2', sha256='e56f8498daf70310b31c42669b2f9b753c5e747eafaff6d4fdac26d72a474b27')
|
|
|
|
depends_on('libtool', type='build')
|
|
depends_on('automake', type='build')
|
|
depends_on('autoconf', type='build')
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('libuuid')
|
|
depends_on('libzmq')
|
|
|
|
def autoreconf(self, spec, prefix):
|
|
autogen = Executable('./autogen.sh')
|
|
autogen()
|
|
|
|
def configure_args(self):
|
|
config_args = []
|
|
if 'clang' in self.compiler.name:
|
|
config_args.append("CFLAGS=-Wno-gnu")
|
|
config_args.append("CXXFLAS=-Wno-gnu")
|
|
return config_args
|