-
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 #18706 from SebastianAchilles/20230903165947_new_p…
…r_pkgconf203 {devel}[GCCcore/13.2.0] pkgconf v2.0.3
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
easybuild/easyconfigs/p/pkgconf/pkgconf-2.0.3-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,31 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'pkgconf' | ||
version = '2.0.3' | ||
|
||
homepage = 'https://github.com/pkgconf/pkgconf' | ||
|
||
description = """pkgconf is a program which helps to configure compiler and linker flags for development libraries. | ||
It is similar to pkg-config from freedesktop.org.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
source_urls = ['https://distfiles.ariadne.space/pkgconf/'] | ||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['a8f25f4b0c1ad48edc9b07ed46101aab4bcb305ba6ae811be49b7499b00eed49'] | ||
|
||
builddependencies = [('binutils', '2.40')] | ||
|
||
postinstallcmds = ["cd %(installdir)s/bin && ln -s pkgconf pkg-config"] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/pkg-config', 'bin/pkgconf'], | ||
'dirs': [], | ||
} | ||
|
||
sanity_check_commands = [ | ||
"pkg-config --help", | ||
"pkgconf --help", | ||
] | ||
|
||
moduleclass = 'devel' |