From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- extra/gnuplot/gnuplot.install | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 extra/gnuplot/gnuplot.install (limited to 'extra/gnuplot/gnuplot.install') diff --git a/extra/gnuplot/gnuplot.install b/extra/gnuplot/gnuplot.install new file mode 100644 index 000000000..b7a5746ad --- /dev/null +++ b/extra/gnuplot/gnuplot.install @@ -0,0 +1,35 @@ +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 +} + -- cgit v1.2.3-54-g00ecf