2018-02-21 23:15:49 -05:00
|
|
|
#!/bin/bash
|
2018-04-12 14:07:33 -04:00
|
|
|
# Description: GNU Emacs
|
2018-02-27 00:15:14 -05:00
|
|
|
set -e
|
2018-02-21 23:15:49 -05:00
|
|
|
|
|
|
|
case $_PLATFORM in
|
|
|
|
darwin)
|
2020-06-23 21:29:06 -04:00
|
|
|
_recipe brew
|
2018-04-23 13:49:26 -04:00
|
|
|
_brew_tap railwaycat/emacsmacport
|
|
|
|
_brew emacs-mac --with-modern-icon
|
2018-02-21 23:15:49 -05:00
|
|
|
;;
|
2021-02-04 19:05:51 -05:00
|
|
|
arch)
|
|
|
|
_recipe _arch
|
|
|
|
_pacman emacs
|
|
|
|
;;
|
|
|
|
debian)
|
2018-02-23 16:17:52 -05:00
|
|
|
_recipe _apt
|
2019-09-12 21:17:37 -04:00
|
|
|
_ppa kelleyk/emacs
|
2021-01-09 16:07:56 -05:00
|
|
|
_apt emacs27
|
2018-02-21 23:15:49 -05:00
|
|
|
;;
|
|
|
|
esac
|