aboutsummaryrefslogtreecommitdiff
path: root/neovim.rb
diff options
context:
space:
mode:
Diffstat (limited to 'neovim.rb')
-rw-r--r--neovim.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/neovim.rb b/neovim.rb
new file mode 100644
index 0000000000..45e8b4018a
--- /dev/null
+++ b/neovim.rb
@@ -0,0 +1,16 @@
+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"
+ system "make", "PREFIX=#{prefix}"
+ end
+end