Skip to content

Instantly share code, notes, and snippets.

@kvnsmth
Created February 17, 2009 01:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kvnsmth/65510 to your computer and use it in GitHub Desktop.
Save kvnsmth/65510 to your computer and use it in GitHub Desktop.
Install gettext:
http://ftp.gnu.org/pub/gnu/gettext/gettext-0.17.tar.gz
$ configure && make
$ sudo make install
Install glib 2.18
http://ftp.gnome.org/pub/gnome/sources/glib/2.18/glib-2.18.0.tar.gz
$ configure && make
$ sudo rm -rf /usr/local/include/glib.h /usr/local/include/gmodule.h
$ sudo make install
Install pkg-config
http://pkgconfig.freedesktop.org/releases/pkg-config-0.23.tar.gz
$ configure && make
$ sudo make install
Install libgpg-error
http://mirrors.rootmode.com/ftp.gnupg.org/libgpg-error/libgpg-error-1.2.tar.gz
Install libgcrypt
http://mirrors.rootmode.com/ftp.gnupg.org/libgcrypt/libgcrypt-1.4.4.tar.gz
Install gnutls
http://ftp.gnu.org/pub/gnu/gnutls/gnutls-2.6.4.tar.bz2
Install EY loudmouth:
$ git clone git://github.com/engineyard/loudmouth.git
$ cd loudmouth
Add to top of configure.ac:
m4_include(/usr/local/share/aclocal/glib-2.0.m4)
m4_include(/usr/local/share/aclocal/pkg.m4)
$ gtkdocize
$ autoreconf --install && autoreconf
$ ./configure && make
$ sudo make install
Install ruby-gnome2
http://downloads.sourceforge.net/ruby-gnome2/ruby-gnome2-all-0.18.1.tar.gz
$ ruby extconf.rb
$ make
$ sudo make install
Install EY loudmouth-ruby
$ git clone git://github.com/engineyard/loudmouth-ruby.git
$ cd loudmouth-ruby
$ ruby extconf.rb
$ make
$ sudo make install
Install dot:
http://www.graphviz.org/
Install LaTex:
http://www.latex-project.org/
(make sure to add the texbin folder to your path, mine was in /usr/texbin)
Installing vertebra
$ git clone git://github.com/engineyard/vertebra.git
$ cd vertebra
$ git submodule init
$ git submodule update
$ sudo ./deps.sh -a
$ autoreconf --install && autoreconf
$ ./configure
$ make
$ sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment