mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
Add neovim
This commit is contained in:
22
packages/neovim.rb
Normal file
22
packages/neovim.rb
Normal file
@@ -0,0 +1,22 @@
|
||||
require 'package'
|
||||
|
||||
class Neovim < Package
|
||||
version '0.1.7'
|
||||
source_url 'https://github.com/neovim/neovim/archive/v0.1.7.tar.gz'
|
||||
source_sha1 '00e67f981105f1acbe06df1dbea21b6f7fa6d9b8'
|
||||
|
||||
depends_on 'libtool'
|
||||
depends_on 'autoconf'
|
||||
depends_on 'automake'
|
||||
depends_on 'cmake'
|
||||
depends_on 'gcc'
|
||||
depends_on 'pkgconfig'
|
||||
|
||||
def self.build
|
||||
system "make"
|
||||
end
|
||||
|
||||
def self.install
|
||||
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user