Skip to content

Instantly share code, notes, and snippets.

@mafice
Created October 11, 2012 13:09
Show Gist options
  • Save mafice/3872159 to your computer and use it in GitHub Desktop.
Save mafice/3872159 to your computer and use it in GitHub Desktop.
Build OMake 0.9.8.5
#!/bin/sh
cd /tmp
mkdir build_omake && cd build_omake
curl -O http://omake.metaprl.org/downloads/omake-0.9.8.5-3.tar.gz
tar xf omake-0.9.8.5-3.tar.gz
curl -O https://gist.github.com/raw/63e85213323a7c034145/9ea9db61c59e9b44f6de8aff9392fdc25540cb3b/build_omake-0.9.8.5.patch
patch -p0 < build_omake-0.9.8.5.patch
cd omake-0.9.8.5
make bootstrap
./omake-boot
echo ""
echo "Edit .config as you want. After that, do ./omake-boot"
echo "To install OMake, do ./omake-boot install"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment