summarylogtreecommitdiffstats
path: root/gnuplot.install
diff options
context:
space:
mode:
authorFrancesco Zardi2022-11-08 10:46:57 +0100
committerFrancesco Zardi2022-11-08 10:47:25 +0100
commit4e3791cdeb12f0a11e503fe199b93e6819d29922 (patch)
tree81e76f565c835f549c29f92ea82f4ce9ed10ddf2 /gnuplot.install
downloadaur-4e3791cdeb12f0a11e503fe199b93e6819d29922.tar.gz
Initial commit
Diffstat (limited to 'gnuplot.install')
-rw-r--r--gnuplot.install34
1 files changed, 34 insertions, 0 deletions
diff --git a/gnuplot.install b/gnuplot.install
new file mode 100644
index 000000000000..f80cc7f9d7f9
--- /dev/null
+++ b/gnuplot.install
@@ -0,0 +1,34 @@
+info_dir=/usr/share/info
+info_files=(gnuplot.info)
+
+post_install() {
+cat << EOF
+==> To add the gnuplot mode in Emacs, add the content of /usr/share/emacs/site-lisp/dotemacs to your ~/.emacs file.
+EOF
+
+ if [ -f /usr/bin/mktexlsr ]; then
+ echo "Updating TeX tree..."
+ mktexlsr
+ fi
+
+for f in ${info_files[@]}; do
+ install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+pre_remove() {
+ for f in ${info_files[@]}; do
+ install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+ done
+}
+
+post_remove() {
+ if [ -f /usr/bin/mktexlsr ]; then
+ echo "Updating TeX tree..."
+ mktexlsr
+ fi
+} \ No newline at end of file