mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
17 lines
324 B
Ruby
17 lines
324 B
Ruby
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
|