aboutsummaryrefslogtreecommitdiff
path: root/neovim.rb
blob: f8c7c1b08763b44f79424296274b408d430f1ccb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
    system "make", "PREFIX=#{prefix}", "cmake"
  end
end