-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18708 from SebastianAchilles/20230903170349_new_p…
…r_libevent2112 {lib}[GCCcore/13.2.0] libevent v2.1.12
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
easybuild/easyconfigs/l/libevent/libevent-2.1.12-GCCcore-13.2.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'libevent' | ||
version = '2.1.12' | ||
|
||
homepage = 'https://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': '13.2.0'} | ||
toolchainopts = {'pic': True} | ||
|
||
source_urls = ['https://github.com/%(name)s/%(name)s/releases/download/release-%(version)s-stable/'] | ||
sources = ['%(name)s-%(version)s-stable.tar.gz'] | ||
checksums = ['92e6de1be9ec176428fd2367677e61ceffc2ee1cb119035037a27d346b0403bb'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
('pkgconf', '2.0.3'), | ||
] | ||
|
||
dependencies = [ | ||
('zlib', '1.2.13'), | ||
('OpenSSL', '1.1', '', SYSTEM), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/event_rpcgen.py', 'include/event.h', 'include/event2/event.h', | ||
'lib/libevent_core.%s' % SHLIB_EXT, 'lib/pkgconfig/libevent.pc'], | ||
'dirs': [], | ||
} | ||
|
||
moduleclass = 'lib' |