diff options
author | Xu Cheng <xucheng@me.com> | 2014-07-08 20:55:07 +0800 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-08 15:43:04 +0200 |
commit | ccd3f9ce67543c45f341b05adf8f85e42bc0fdce (patch) | |
tree | 42fe4afd0e6e0573a8c9c307f0d9cd25d4fbdab7 /neovim.rb | |
parent | 8046e59f0594cfdd717d2714514fcf3f796fddd4 (diff) | |
download | rneovim-ccd3f9ce67543c45f341b05adf8f85e42bc0fdce.tar.gz rneovim-ccd3f9ce67543c45f341b05adf8f85e42bc0fdce.tar.bz2 rneovim-ccd3f9ce67543c45f341b05adf8f85e42bc0fdce.zip |
neovim.rb: improve dependency
1. remove unnecessary deps `md5sha1sum`
2. add `=> :build`
3. add missing deps `autoconf`
Diffstat (limited to 'neovim.rb')
-rw-r--r-- | neovim.rb | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,10 +4,10 @@ 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" + depends_on "cmake" => :build + depends_on "libtool" => :build + depends_on "automake" => :build + depends_on "autoconf" => :build def install ENV.deparallelize |