mirror of
https://github.com/void-linux/void-packages.git
synced 2025-05-03 22:43:50 +02:00
Script wrappers are created in ${wrksrc}/.xbps/bin and this path is appended to make the configure scripts detect them. This avoids adding build deps in hostmakedepends, as well as avoiding modifying templates to specify the path to the script. Currently this only creates a wrapper for "icu-config", but can be extended easily to create more wrappers (freetype, libxml, etc).
25 lines
649 B
Bash
25 lines
649 B
Bash
# This hook creates wrappers for foo-config scripts in cross builds.
|
|
#
|
|
# Wrappers are created in ${wrksrc}/.xbps/bin and this path is appended
|
|
# to make configure scripts find them.
|
|
|
|
WRAPPERDIR="${wrksrc}/.xbps/bin"
|
|
|
|
icu_config_wrapper() {
|
|
[ ! -x ${XBPS_CROSS_BASE}/usr/bin/icu-config ] && return 0
|
|
|
|
echo "#!/bin/sh" >> ${WRAPPERDIR}/icu-config
|
|
echo "exec ${XBPS_CROSS_BASE}/usr/bin/icu-config --prefix=${XBPS_CROSS_BASE}/usr \"\$@\"" >> ${WRAPPERDIR}/icu-config
|
|
chmod 755 ${WRAPPERDIR}/icu-config
|
|
}
|
|
|
|
hook() {
|
|
[ -z "$CROSS_BUILD" ] && return 0
|
|
|
|
mkdir -p ${WRAPPERDIR}
|
|
|
|
# create wrapers
|
|
icu_config_wrapper
|
|
|
|
export PATH=${WRAPPERDIR}:$PATH
|
|
}
|