neovim/neovim.rb
Tayler Mulligan 002f2327fe 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.
2014-03-19 08:00:15 -03:00

19 lines
463 B
Ruby

require 'formula'
class Neovim < Formula
homepage 'http://neovim.org'
head 'https://github.com/neovim/neovim.git'
depends_on 'md5sha1sum'
depends_on 'cmake'
depends_on 'libtool'
depends_on 'automake'
def install
ENV.deparallelize
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
end