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
14 lines
217 B
Plaintext
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
|
|
}
|