spack/var/spack/repos/builtin/packages/pkgconf/package.py

43 lines
1.8 KiB
Python
Raw Normal View History

# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
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/"
2019-10-11 01:08:19 +08:00
# URL must remain http:// so Spack can bootstrap curl
url = "http://distfiles.dereferenced.org/pkgconf/pkgconf-1.6.3.tar.xz"
2019-10-11 01:08:19 +08:00
version('1.6.3', sha256='61f0b31b0d5ea0e862b454a80c170f57bad47879c0c42bd8de89200ff62ea210')
version('1.6.1', sha256='22b9ee38438901f9d60f180e5182821180854fa738fd071f593ea26a81da208c')
version('1.6.0', sha256='6135a3abb576672ba54a899860442ba185063f0f90dae5892f64f7bae8e1ece5')
version('1.5.4', sha256='9c5864a4e08428ef52f05a41c948529555458dec6d283b50f8b7d32463c54664')
2018-05-24 02:27:39 +08:00
version('1.4.2', '678d242b4eef1754bba6a58642af10bb')
version('1.4.0', 'c509c0dad5a70aa4bc3210557b7eafce')
version('1.3.10', '9b63707bf6f8da6efb3868101d7525fe')
2018-05-24 02:27:39 +08:00
version('1.3.8', '484ba3360d983ce07416843d5bc916a8')
provides('pkgconfig')
2018-05-24 02:27:39 +08:00
# TODO: Add a package for the kyua testing framework
# depends_on('kyua', type='test')
def setup_dependent_environment(self, spack_env, run_env, dependent_spec):
"""Adds the ACLOCAL path for autotools."""
spack_env.append_path('ACLOCAL_PATH',
join_path(self.prefix.share, 'aclocal'))
@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))