2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-08-25 08:54:14 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-08-25 08:54:14 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Pkgconf(AutotoolsPackage):
|
|
|
|
"""pkgconf is a program which helps to configure compiler and linker
|
|
|
|
flags for development frameworks. It is similar to pkg-config from
|
|
|
|
freedesktop.org, providing additional functionality while also
|
|
|
|
maintaining compatibility."""
|
|
|
|
|
|
|
|
homepage = "http://pkgconf.org/"
|
2018-12-27 04:46:30 +08:00
|
|
|
url = "http://distfiles.dereferenced.org/pkgconf/pkgconf-1.5.4.tar.xz"
|
2017-08-25 08:54:14 +08:00
|
|
|
|
2019-06-28 04:15:04 +08:00
|
|
|
version('1.6.1', '22b9ee38438901f9d60f180e5182821180854fa738fd071f593ea26a81da208c')
|
2019-03-20 21:10:11 +08:00
|
|
|
version('1.6.0', '6135a3abb576672ba54a899860442ba185063f0f90dae5892f64f7bae8e1ece5')
|
2018-11-13 13:22:34 +08:00
|
|
|
version('1.5.4', '9c5864a4e08428ef52f05a41c948529555458dec6d283b50f8b7d32463c54664')
|
2018-05-24 02:27:39 +08:00
|
|
|
version('1.4.2', '678d242b4eef1754bba6a58642af10bb')
|
|
|
|
version('1.4.0', 'c509c0dad5a70aa4bc3210557b7eafce')
|
2017-11-23 23:05:38 +08:00
|
|
|
version('1.3.10', '9b63707bf6f8da6efb3868101d7525fe')
|
2018-05-24 02:27:39 +08:00
|
|
|
version('1.3.8', '484ba3360d983ce07416843d5bc916a8')
|
2017-08-25 08:54:14 +08:00
|
|
|
|
2017-11-23 23:05:38 +08:00
|
|
|
provides('pkgconfig')
|
|
|
|
|
2018-05-24 02:27:39 +08:00
|
|
|
# TODO: Add a package for the kyua testing framework
|
|
|
|
# depends_on('kyua', type='test')
|
|
|
|
|
2018-03-07 01:25:00 +08:00
|
|
|
def setup_dependent_environment(self, spack_env, run_env, dependent_spec):
|
2018-03-22 02:20:40 +08:00
|
|
|
"""Adds the ACLOCAL path for autotools."""
|
2018-03-07 01:25:00 +08:00
|
|
|
spack_env.append_path('ACLOCAL_PATH',
|
|
|
|
join_path(self.prefix.share, 'aclocal'))
|
|
|
|
|
2017-08-25 08:54:14 +08:00
|
|
|
@run_after('install')
|
|
|
|
def link_pkg_config(self):
|
|
|
|
symlink('pkgconf', '{0}/pkg-config'.format(self.prefix.bin))
|
|
|
|
symlink('pkgconf.1',
|
|
|
|
'{0}/pkg-config.1'.format(self.prefix.share.man.man1))
|