aboutsummaryrefslogtreecommitdiff
path: root/neovim.rb
diff options
context:
space:
mode:
authorCameron Eagans <cweagans@gmail.com>2014-02-23 14:08:33 -0700
committerCameron Eagans <cweagans@gmail.com>2014-02-23 14:08:40 -0700
commiteaa4f2b9ce99eeddef0b21c7ba3f913d36d038eb (patch)
treea247dc5fcdffe171f3400bb411a02bfa8299868a /neovim.rb
parentb0abcda487d4f1bc7eb3f6a1edc878e576124451 (diff)
downloadrneovim-eaa4f2b9ce99eeddef0b21c7ba3f913d36d038eb.tar.gz
rneovim-eaa4f2b9ce99eeddef0b21c7ba3f913d36d038eb.tar.bz2
rneovim-eaa4f2b9ce99eeddef0b21c7ba3f913d36d038eb.zip
Adding neovim formula for Homebrew
Diffstat (limited to 'neovim.rb')
-rw-r--r--neovim.rb15
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