Skip to content

Instantly share code, notes, and snippets.

@yasuyk
Created March 29, 2013 00:32
Show Gist options
  • Save yasuyk/5267926 to your computer and use it in GitHub Desktop.
Save yasuyk/5267926 to your computer and use it in GitHub Desktop.
install info files from emacs 24.3 tarball
#!/usr/bin/env bash
EMACS=emacs-24.3
TARBALL=$EMACS.tar.xz
wget http://core.ring.gr.jp/pub/GNU/emacs/$TARBALL
tar xzf $TARBALL
cd $EMACS
./configure --infodir=~/.info
make install-info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment