aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTayler Mulligan <mulligantayler@gmail.com>2014-03-16 22:56:16 -0700
committerThiago de Arruda <tpadilha84@gmail.com>2014-03-18 19:40:23 -0300
commit1fcd332e8e3d2c6c22fa548cc96b1d9dde2f5651 (patch)
treebce7355c9c95bdf7f12d242ef163ace71770db6a
parentbaab23827194175e811cfaccd287e9438f1d1b6d (diff)
downloadrneovim-1fcd332e8e3d2c6c22fa548cc96b1d9dde2f5651.tar.gz
rneovim-1fcd332e8e3d2c6c22fa548cc96b1d9dde2f5651.tar.bz2
rneovim-1fcd332e8e3d2c6c22fa548cc96b1d9dde2f5651.zip
Removed testing for Homebrew installs
Fixes the luarocks/busted error. Homebrew isn't exactly being facilitated, so it's not an ideal solution, but it works.
-rw-r--r--neovim.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/neovim.rb b/neovim.rb
index a9276ed8b2..37fd2d3bdf 100644
--- a/neovim.rb
+++ b/neovim.rb
@@ -11,8 +11,10 @@ class Neovim < Formula
def install
ENV.deparallelize
- system "make", "PREFIX=#{prefix}", "cmake"
- system "make", "PREFIX=#{prefix}"
- system "make", "PREFIX=#{prefix}", "install"
+ system "sh", "-e", "scripts/compile-libuv.sh"
+ system "sh", "-e", "scripts/compile-lua.sh"
+ system "sh", "-e", "scripts/setup-test-tools.sh"
+ system "cmake", "-DCMAKE_BUILD_TYPE=Debug", "-DCMAKE_PREFIX_PATH=.deps/usr", "-DLibUV_USE_STATIC=YES", "-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}"
+ system "make", "install"
end
end