Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions easybuild/easyconfigs/c/cppzmq/cppzmq-4.9.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# ll4strw Lorentz Institute
easyblock = 'CMakeMake'

name = 'cppzmq'
version = '4.9.0'

homepage = 'https://github.com/zeromq/cppzmq'
description = "cppzmq is a C++ binding for libzmq."

toolchain = SYSTEM

source_urls = ['https://github.com/zeromq/%(name)s/archive/refs/tags/']
sources = ['v%(version)s.tar.gz']
checksums = ['3fdf5b100206953f674c94d40599bdb3ea255244dcc42fab0d75855ee3645581']

builddependencies = [
('binutils', '2.37', '', ('GCCcore', '11.2.0')),
('CMake', '3.22.1', '', ('GCCcore', '11.2.0')),
('ZeroMQ', '4.3.4', '', ('GCCcore', '11.2.0')),
]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
builddependencies = [
('binutils', '2.37', '', ('GCCcore', '11.2.0')),
('CMake', '3.22.1', '', ('GCCcore', '11.2.0')),
('ZeroMQ', '4.3.4', '', ('GCCcore', '11.2.0')),
]
builddependencies = [
('GCCcore', '11.2.0'), # required for hierarchical module naming scheme
('binutils', '2.37', '', ('GCCcore', '11.2.0')),
('CMake', '3.22.1', '', ('GCCcore', '11.2.0')),
('ZeroMQ', '4.3.4', '', ('GCCcore', '11.2.0')),
]


separate_build_dir = True

sanity_check_paths = {
'files': ['include/zmq.hpp'],
'dirs': ['include', 'lib'],
}

moduleclass = 'lib'