1
0
Fork 0
mirror of https://github.com/correl/dotfiles.git synced 2025-03-20 09:19:18 -09:00
dotfiles/recipes/emacs

21 lines
355 B
Text
Raw Normal View History

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)
_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)
_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