Last active
January 5, 2016 01:04
-
-
Save ishtaka/20c1a29f86bf62b0a0f1 to your computer and use it in GitHub Desktop.
[Emacs]Emacs24.3 ソースからインストール
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # install emacs24.3 | |
| cd /tmp | |
| curl -O http://ftp.gnu.org/pub/gnu/emacs/emacs-24.3.tar.gz | |
| tar xfz emacs-24.3.tar.gz | |
| cd emacs-24.3 | |
| ./configure --without-x --without-selinux #--prefix=$HOME/local | |
| make | |
| sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment