File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed
Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ class VimCustom < Formula
22 desc "Vi 'workalike' with many additional features"
33 homepage "https://www.vim.org/"
44 # vim should only be updated every 25 releases on multiples of 25
5- url "https://github.com/vim/vim/archive/refs/tags/v9.1.1550 .tar.gz"
6- sha256 "373f8478b7c285a9fbe18a62f18601736152ec425fbf1181af5a382a3f06bc76 "
5+ url "https://github.com/vim/vim/archive/refs/tags/v9.1.1650 .tar.gz"
6+ sha256 "bab8a11ae35333221cffbca4518588bbe36604a5207135bf9f0d31579277960d "
77 license "Vim"
88 head "https://github.com/vim/vim.git" , branch : "master"
99
@@ -46,7 +46,17 @@ class VimCustom < Formula
4646 uses_from_macos "perl"
4747
4848 on_linux do
49+ depends_on "acl" => :recommended if build . with? "libsodium"
50+
4951 depends_on "perl" => :optional
52+
53+ on_arm do
54+ depends_on "gcc" => :build
55+ fails_with :gcc do
56+ version "14"
57+ cause "Generates illegal instructions when branch protection is enabled"
58+ end
59+ end
5060 end
5161
5262 conflicts_with "ex-vi" ,
@@ -113,7 +123,7 @@ def install
113123 "--with-compiledby=Homebrew" ,
114124 "--enable-cscope" ,
115125 "--enable-terminal" ,
116- "--enable -gui=no " ,
126+ "--disable -gui" ,
117127 "--without-x" ,
118128 *opts
119129
You can’t perform that action at this time.
0 commit comments