dotfiles/recipes/emacs

17 lines
289 B
Text
Raw Normal View History

2018-02-22 04:15:49 +00:00
#!/bin/bash
2018-04-12 18:07:33 +00:00
# Description: GNU Emacs
2018-02-27 05:15:14 +00:00
set -e
2018-02-22 04:15:49 +00:00
case $_PLATFORM in
darwin)
_recipe brew
2018-04-23 17:49:26 +00:00
_brew_tap railwaycat/emacsmacport
_brew emacs-mac --with-modern-icon
2018-02-22 04:15:49 +00:00
;;
linux)
_recipe _apt
2019-09-13 01:17:37 +00:00
_ppa kelleyk/emacs
_apt emacs26
2018-02-22 04:15:49 +00:00
;;
esac