mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00
28 lines
794 B
Plaintext
28 lines
794 B
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'pkg-config'
|
|
version = '0.29.2'
|
|
|
|
homepage = 'http://www.freedesktop.org/wiki/Software/pkg-config/'
|
|
description = """pkg-config is a helper tool used when local_compiling applications and libraries. It helps you insert the
|
|
correct local_compiler options on the command line so an application can use
|
|
gcc -o test test.c `pkg-config --libs --cflags glib-2.0`
|
|
for instance, rather than hard-coding values on where to find glib (or other libraries)."""
|
|
|
|
# don't use PAX, it might break.
|
|
tar_config_opts = True
|
|
|
|
toolchain = SYSTEM
|
|
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
source_urls = ['http://pkgconfig.freedesktop.org/releases/']
|
|
|
|
configopts = " --with-internal-glib"
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/pkg-config'],
|
|
'dirs': [],
|
|
}
|
|
|
|
moduleclass = 'devel'
|