diff options
-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 |