dotfiles/recipes/emacs

21 lines
355 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
;;
2021-02-05 00:05:51 +00:00
arch)
_recipe _arch
_pacman emacs
;;
debian)
_recipe _apt
2019-09-13 01:17:37 +00:00
_ppa kelleyk/emacs
2021-01-09 21:07:56 +00:00
_apt emacs27
2018-02-22 04:15:49 +00:00
;;
esac