mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00: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
 |