nixpkgs/pkgs/desktops/xfce/core/xfce4-dev-tools/setup-hook.sh
Bobby Rong f77029273a
xfce.xfce4-dev-tools: Allow skipping xdt-autogen
This is useful since Xfce likely starts porting stuff to meson
but can still need xdt-csource for ui files.
2024-04-09 22:59:28 +08:00

15 lines
251 B
Bash

xdtEnvHook() {
addToSearchPath ACLOCAL_PATH $1/share/aclocal
}
envHooks+=(xdtEnvHook)
xdtAutogenPhase() {
mkdir -p m4
NOCONFIGURE=1 xdt-autogen
}
if [ -z "${dontUseXdtAutogenPhase-}" ]; then
preConfigurePhases+=(xdtAutogenPhase)
fi