summaryrefslogtreecommitdiffstats
path: root/bzip2.pkg
diff options
context:
space:
mode:
Diffstat (limited to 'bzip2.pkg')
-rw-r--r--bzip2.pkg/postinst8
-rw-r--r--bzip2.pkg/prerm7
2 files changed, 15 insertions, 0 deletions
diff --git a/bzip2.pkg/postinst b/bzip2.pkg/postinst
new file mode 100644
index 0000000..0239ea7
--- /dev/null
+++ b/bzip2.pkg/postinst
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+if [ "x${1}" = 'xconfigure' ]; then
+ for link in bzip2 bunzip2 bzcat; do
+ update-alternatives --install /usr/bin/${link} ${link} \
+ /usr/bin/${link}.bzip2 20
+ done
+fi
diff --git a/bzip2.pkg/prerm b/bzip2.pkg/prerm
new file mode 100644
index 0000000..d82eecc
--- /dev/null
+++ b/bzip2.pkg/prerm
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+if [ "x${1}" = 'xremove' ]; then
+ for link in bzip2 bunzip2 bzcat; do
+ update-alternatives --remove ${link} /usr/bin/${link}.bzip2
+ done
+fi