mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
97 lines
3.5 KiB
Ruby
97 lines
3.5 KiB
Ruby
require 'package'
|
|
|
|
class Gvim < Package
|
|
description 'Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient. (with advanced features, such as a GUI)'
|
|
homepage 'http://www.vim.org/'
|
|
@_ver = '8.2.4594'
|
|
version @_ver
|
|
license 'GPL-2'
|
|
compatibility 'aarch64,armv7l,x86_64'
|
|
source_url 'https://github.com/vim/vim.git'
|
|
git_hashtag "v#{@_ver}"
|
|
|
|
binary_url({
|
|
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/gvim/8.2.4594_armv7l/gvim-8.2.4594-chromeos-armv7l.tar.zst',
|
|
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/gvim/8.2.4594_armv7l/gvim-8.2.4594-chromeos-armv7l.tar.zst',
|
|
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/gvim/8.2.4594_x86_64/gvim-8.2.4594-chromeos-x86_64.tar.zst'
|
|
})
|
|
binary_sha256({
|
|
aarch64: 'a778b458c9111ccedf0c84b2cdd472c52bf80c9e52e40f6c22f22f2ccf27d50a',
|
|
armv7l: 'a778b458c9111ccedf0c84b2cdd472c52bf80c9e52e40f6c22f22f2ccf27d50a',
|
|
x86_64: '0b238d45425755746cf68dd398f33ca5e22345a3fcab50dfb472bf7fe574f402'
|
|
})
|
|
|
|
depends_on 'vim_runtime'
|
|
depends_on 'gtk3'
|
|
depends_on 'sommelier'
|
|
|
|
def self.preflight
|
|
vim = `which #{CREW_PREFIX}/bin/vim 2> /dev/null`.chomp
|
|
abort "vim version #{version} already installed.".lightgreen unless vim.to_s == ''
|
|
end
|
|
|
|
def self.patch
|
|
abort('Please remove libiconv before building.') if File.exist?("#{CREW_LIB_PREFIX}/libcharset.so")
|
|
# set the system-wide vimrc path
|
|
FileUtils.cd('src') do
|
|
system 'sed', '-i', "s|^.*#define SYS_VIMRC_FILE.*$|#define SYS_VIMRC_FILE \"#{CREW_PREFIX}/etc/vimrc\"|",
|
|
'feature.h'
|
|
system 'sed', '-i', "s|^.*#define SYS_GVIMRC_FILE.*$|#define SYS_GVIMRC_FILE \"#{CREW_PREFIX}/etc/gvimrc\"|",
|
|
'feature.h'
|
|
end
|
|
end
|
|
|
|
def self.build
|
|
system '[ -x configure ] || autoreconf -fvi'
|
|
system "env CFLAGS='-pipe -fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
|
|
CXXFLAGS='-pipe -fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
|
|
LDFLAGS='-fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
|
|
./configure \
|
|
#{CREW_OPTIONS} \
|
|
--localstatedir=#{CREW_PREFIX}/var/lib/vim \
|
|
--with-features=huge \
|
|
--with-compiledby='Chromebrew' \
|
|
--enable-gpm \
|
|
--enable-acl \
|
|
--with-x=yes \
|
|
--enable-gnome-check \
|
|
--enable-multibyte \
|
|
--enable-cscope \
|
|
--enable-netbeans \
|
|
--enable-perlinterp=dynamic \
|
|
--enable-pythoninterp=dynamic \
|
|
--enable-python3interp=dynamic \
|
|
--enable-rubyinterp=dynamic \
|
|
--enable-luainterp=dynamic \
|
|
--enable-tclinterp=dynamic \
|
|
--disable-canberra \
|
|
--disable-selinux \
|
|
--disable-nls"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "VIMRCLOC=#{CREW_PREFIX}/etc", "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
FileUtils.ln_s "#{CREW_PREFIX}/bin/vim", "#{CREW_DEST_PREFIX}/bin/vi"
|
|
|
|
# these are provided by 'vim_runtime'
|
|
FileUtils.rm_r "#{CREW_DEST_PREFIX}/share/vim"
|
|
|
|
# these are provided by 'xxd_standalone'
|
|
@deletefiles = %W[#{CREW_DEST_PREFIX}/bin/xxd #{CREW_DEST_MAN_PREFIX}/man1/xxd.1]
|
|
@deletefiles.each do |f|
|
|
FileUtils.rm f if File.exist?(f)
|
|
end
|
|
end
|
|
|
|
def self.postinstall
|
|
puts
|
|
puts "The config files are located in #{CREW_PREFIX}/etc".lightblue
|
|
puts 'User-specific configuration should go in ~/.gvimrc'.lightblue
|
|
puts
|
|
puts 'If you are upgrading from an earlier version, edit ~/.bashrc'.orange
|
|
puts "and remove the 'export VIMRUNTIME' and 'export LC_ALL=C' lines.".orange
|
|
puts
|
|
end
|
|
end
|