diff options
| author | Cameron Eagans <cweagans@gmail.com> | 2014-02-23 14:08:33 -0700 | 
|---|---|---|
| committer | Cameron Eagans <cweagans@gmail.com> | 2014-02-23 14:08:40 -0700 | 
| commit | eaa4f2b9ce99eeddef0b21c7ba3f913d36d038eb (patch) | |
| tree | a247dc5fcdffe171f3400bb411a02bfa8299868a | |
| parent | b0abcda487d4f1bc7eb3f6a1edc878e576124451 (diff) | |
| download | rneovim-eaa4f2b9ce99eeddef0b21c7ba3f913d36d038eb.tar.gz rneovim-eaa4f2b9ce99eeddef0b21c7ba3f913d36d038eb.tar.bz2 rneovim-eaa4f2b9ce99eeddef0b21c7ba3f913d36d038eb.zip | |
Adding neovim formula for Homebrew
| -rw-r--r-- | neovim.rb | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/neovim.rb b/neovim.rb new file mode 100644 index 0000000000..f8c7c1b087 --- /dev/null +++ b/neovim.rb @@ -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 | 
