diff options
author | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-08 15:44:50 +0200 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-08 15:44:50 +0200 |
commit | 3cf435af363dc3585568e1213152e31ed6b1fc08 (patch) | |
tree | 42fe4afd0e6e0573a8c9c307f0d9cd25d4fbdab7 | |
parent | 447f1c7b545f83aae494a1919fd0e12fff5cb9dd (diff) | |
parent | ccd3f9ce67543c45f341b05adf8f85e42bc0fdce (diff) | |
download | rneovim-3cf435af363dc3585568e1213152e31ed6b1fc08.tar.gz rneovim-3cf435af363dc3585568e1213152e31ed6b1fc08.tar.bz2 rneovim-3cf435af363dc3585568e1213152e31ed6b1fc08.zip |
Merge pull request #922 'Improve neovim.rb'
-rw-r--r-- | neovim.rb | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,13 +1,13 @@ -require 'formula' +require "formula" class Neovim < Formula - homepage 'http://neovim.org' - head 'https://github.com/neovim/neovim.git' + 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 |