Merge pull request #1366 from fwalch/homebrew-release

Homebrew: Compile as release build.
This commit is contained in:
Justin M. Keyes 2014-11-03 04:31:10 -05:00
commit 33d3a7c83b

View File

@ -12,6 +12,6 @@ class Neovim < Formula
def install def install
ENV["GIT_DIR"] = cached_download/".git" if build.head? ENV["GIT_DIR"] = cached_download/".git" if build.head?
ENV.deparallelize ENV.deparallelize
system "make", "CMAKE_EXTRA_FLAGS=\"-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}\"", "install" system "make", "CMAKE_BUILD_TYPE=RelWithDebInfo", "CMAKE_EXTRA_FLAGS=\"-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}\"", "install"
end end
end end