diff options
author | Tayler Mulligan <mulligantayler@gmail.com> | 2014-03-16 22:56:16 -0700 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-18 19:40:23 -0300 |
commit | 1fcd332e8e3d2c6c22fa548cc96b1d9dde2f5651 (patch) | |
tree | bce7355c9c95bdf7f12d242ef163ace71770db6a | |
parent | baab23827194175e811cfaccd287e9438f1d1b6d (diff) | |
download | rneovim-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.rb | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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 |