aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTayler Mulligan <mulligantayler@gmail.com>2014-03-18 21:22:30 -0700
committerThiago de Arruda <tpadilha84@gmail.com>2014-03-19 08:00:15 -0300
commit002f2327fe1e462985dbeb363e0bb8a69bcc96de (patch)
tree8cc24e000b1c5940abb710efed091d49570e1441
parentedabc6f4c7277262568801ff870808170ac32327 (diff)
downloadrneovim-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.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/neovim.rb b/neovim.rb
index 37fd2d3bdf..79e583a80a 100644
--- a/neovim.rb
+++ b/neovim.rb
@@ -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