MINGW-packages/mingw-w64-gtk2/gtk2-CLANG64.install
Jeremy Drake 497437deb1 Add install scripts for CLANG MSYSTEMs.
Generated by:
for m in CLANG32 CLANG64 CLANGARM64; do
  for f in $(find . -name \*UCRT64.install); do
    n="$(echo "$f" | sed -e "s/UCRT64/${m}/")"
    sed -e "s/ucrt64/${m,,}/g" < "$f" > "$n"
    git add "$n"
  done
done
2021-04-09 10:38:26 -07:00

14 lines
217 B
Plaintext

MINGW_INSTALL=clang64
post_install() {
${MINGW_INSTALL}/bin/gtk-query-immodules-2.0 --update-cache
}
post_upgrade() {
post_install
}
pre_remove() {
rm -f ${MINGW_INSTALL}/lib/gtk-2.0/2.10.0/immodules.cache
}