Files
MINGW-packages/mingw-w64-libxml2/libxml2-CLANGARM64.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

13 lines
271 B
Plaintext

MINGW_INSTALL=clangarm64
post_install() {
if test ! -f ${MINGW_INSTALL}/etc/xml/catalog; then
usr/bin/mkdir -p ${MINGW_INSTALL}/etc/xml
${MINGW_INSTALL}/bin/xmlcatalog --noout --create ${MINGW_INSTALL}/etc/xml/catalog
fi
}
post_upgrade() {
post_install
}