mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
454 B
Text
22 lines
454 B
Text
post_install() {
|
|
cat << EOF
|
|
==> In order to use Muse, add the following lines to your ~/.emacs file
|
|
==> depending on the styles you wish to use (see manual for more details):
|
|
|
|
(require 'muse-mode) ; load authoring mode
|
|
|
|
(require 'muse-html) ; load publishing styles I use
|
|
(require 'muse-latex)
|
|
(require 'muse-context)
|
|
|
|
(require 'muse-project) ; publish files in projects
|
|
EOF
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|