aboutsummaryrefslogtreecommitdiff
path: root/neovim.rb
blob: ed826fd0c5d3780e46d12b2c8625b66df4d9395f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require "formula"

class Neovim < Formula
  homepage "http://neovim.org"
  head "https://github.com/neovim/neovim.git"

  depends_on "cmake" => :build
  depends_on "libtool" => :build
  depends_on "automake" => :build
  depends_on "autoconf" => :build

  def install
    ENV.deparallelize
    system "make", "CMAKE_EXTRA_FLAGS=\"-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}\"", "install"
  end
end