Adding neovim formula for Homebrew

This commit is contained in:
Cameron Eagans 2014-02-23 14:08:33 -07:00
parent b0abcda487
commit eaa4f2b9ce

15
neovim.rb Normal file
View File

@ -0,0 +1,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