Mercurial > hg > xemacs-beta
diff etc/ns/XEmacs.post_install @ 0:376386a54a3c r19-14
Import from CVS: tag r19-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:45:50 +0200 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/etc/ns/XEmacs.post_install Mon Aug 13 08:45:50 2007 +0200 @@ -0,0 +1,19 @@ +#!/bin/sh +PACKAGEDIR="$1" +INSTALLDIR="$2" +echo +echo "Creating links from /usr/local/bin to the XEmacs binaries." +/bin/mkdirs /usr/local/bin +/bin/ln -s $INSTALLDIR/XEmacs.app/bin/* /usr/local/bin + +echo "Creating links from /usr/local/man subdirectories to the XEmacs man pages." +/bin/mkdirs /usr/local/man/man1 /usr/local/man/man6 +/bin/ln -s $INSTALLDIR/XEmacs.app/man/man1/* $INSTALLDIR/XEmacs.app/lib/xemacs-*/etc/celibacy.1 $INSTALLDIR/XEmacs.app/lib/xemacs-*/etc/condom.1 /usr/local/man/man1 +/bin/ln -s $INSTALLDIR/XEmacs.app/lib/xemacs-*/etc/sex.6 /usr/local/man/man6 + +echo "Creating a link from /usr/local/lib/xemacs-19.13 to the XEmacs library directory." +/bin/mkdirs /usr/local/lib +/bin/ln -s $INSTALLDIR/XEmacs.app/lib/xemacs-19.13 /usr/local/lib + +echo "Done." +exit 0