summarylogtreecommitdiffstats
path: root/libx32-mpdecimal.install
diff options
context:
space:
mode:
Diffstat (limited to 'libx32-mpdecimal.install')
-rw-r--r--libx32-mpdecimal.install21
1 files changed, 21 insertions, 0 deletions
diff --git a/libx32-mpdecimal.install b/libx32-mpdecimal.install
new file mode 100644
index 000000000000..96e1dde78576
--- /dev/null
+++ b/libx32-mpdecimal.install
@@ -0,0 +1,21 @@
+post_install() {
+ mv /usr/include/mpdecimal.h /usr/include/mpdecimal-64.h
+ ln -s mpdecimal-stub.h /usr/include/mpdecimal.h
+}
+
+post_upgrade() {
+ if [ ! -L /usr/include/mpdecimal.h ]; then
+ post_install
+ elif [ ${1::-2} != ${2::-2} ]; then
+ echo WARNING: libx32-mpdecimal is upgraded before mpdecimal,
+ echo WARNING: you probably need to reinstall libx32-mpdecimal.
+ fi
+}
+
+post_remove() {
+ if [ -L /usr/include/mpdecimal.h ]; then
+ rm /usr/include/mpdecimal.h
+ mv /usr/include/mpdecimal-64.h /usr/include/mpdecimal.h
+ fi
+}
+