Skip to content

Instantly share code, notes, and snippets.

@ishtaka
Last active January 5, 2016 01:04
Show Gist options
  • Select an option

  • Save ishtaka/20c1a29f86bf62b0a0f1 to your computer and use it in GitHub Desktop.

Select an option

Save ishtaka/20c1a29f86bf62b0a0f1 to your computer and use it in GitHub Desktop.
[Emacs]Emacs24.3 ソースからインストール
#!/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