diff options
author | Tayler Mulligan <mulligantayler@gmail.com> | 2014-03-18 21:22:30 -0700 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-19 08:00:15 -0300 |
commit | 002f2327fe1e462985dbeb363e0bb8a69bcc96de (patch) | |
tree | 8cc24e000b1c5940abb710efed091d49570e1441 | |
parent | edabc6f4c7277262568801ff870808170ac32327 (diff) | |
download | rneovim-002f2327fe1e462985dbeb363e0bb8a69bcc96de.tar.gz rneovim-002f2327fe1e462985dbeb363e0bb8a69bcc96de.tar.bz2 rneovim-002f2327fe1e462985dbeb363e0bb8a69bcc96de.zip |
Homebrew formula builds dependencies through make
This way, if the dependencies change, and the install process needs to
change to accommodate this, the Homebrew formula won't need revising.
-rw-r--r-- | neovim.rb | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -11,9 +11,7 @@ class Neovim < Formula def install ENV.deparallelize - system "sh", "-e", "scripts/compile-libuv.sh" - system "sh", "-e", "scripts/compile-lua.sh" - system "sh", "-e", "scripts/setup-test-tools.sh" + system "make", "deps" system "cmake", "-DCMAKE_BUILD_TYPE=Debug", "-DCMAKE_PREFIX_PATH=.deps/usr", "-DLibUV_USE_STATIC=YES", "-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}" system "make", "install" end |