forked from pool/pkgconf
43202e047f
- Update to 1.4.2 + Bug fixes - ensure pkgconf_dependency_t nodes have a solution marked when satisfied by an indirect provider (gh#pkgconf/pkgconf#172) - revert some quoting changes because they don't work well with certain GCC edge cases (gh#pkgconf/pkgconf#168) - Initial packaging based on Fedora and Mageia packaging OBS-URL: https://build.opensuse.org/request/show/610670 OBS-URL: https://build.opensuse.org/package/show/devel:tools/pkgconf?expand=0&rev=1
13 lines
410 B
Bash
13 lines
410 B
Bash
#!/bin/bash
|
|
|
|
# Simple wrapper to tell pkgconf to behave as a platform-specific version of pkg-config
|
|
# Platform: @TARGET_PLATFORM@
|
|
|
|
export PKG_CONFIG_LIBDIR="${PKG_CONFIG_LIBDIR:-@PKGCONF_LIBDIRS@}"
|
|
export PKG_CONFIG_SYSTEM_LIBRARY_PATH="${PKG_CONFIG_SYSTEM_LIBRARY_PATH:-@PKGCONF_SYSLIBDIR@}"
|
|
export PKG_CONFIG_SYSTEM_INCLUDE_PATH="${PKG_CONFIG_SYSTEM_INCLUDE_PATH:-@PKGCONF_SYSINCDIR@}"
|
|
|
|
pkgconf $@
|
|
|
|
exit $?
|