mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-14 02:41:22 +01:00
25 lines
792 B
Plaintext
25 lines
792 B
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'libevent'
|
|
version = '2.0.22'
|
|
|
|
homepage = 'http://libevent.org/'
|
|
description = """The libevent API provides a mechanism to execute a callback function when a specific
|
|
event occurs on a file descriptor or after a timeout has been reached.
|
|
Furthermore, libevent also support callbacks due to signals or regular timeouts."""
|
|
|
|
toolchain = {'name': 'GCCcore', 'version': '4.9.3'}
|
|
|
|
source_urls = [
|
|
'https://github.com/downloads/%(name)s/%(name)s/',
|
|
'https://sourceforge.net/projects/levent/files/%(name)s/%(name)s-%(version_major_minor)s/',
|
|
]
|
|
sources = ['%(name)s-%(version)s-stable.tar.gz']
|
|
|
|
builddependencies = [
|
|
# use same binutils version that was used when building GCCcore toolchain
|
|
('binutils', '2.25', '', True),
|
|
]
|
|
|
|
moduleclass = 'lib'
|