class Neovim < Formula desc "Ambitious Vim-fork focused on extensibility and agility" homepage "https://neovim.io/" url "https://github.com/neovim/neovim/archive/v0.4.3.tar.gz" sha256 "91a0b5d32204a821bf414690e6b48cf69224d1961d37158c2b383f6a6cf854d2" bottle do sha256 "389ab254794ea04df8a106bf281c227c4fdee27c609d52951f32b9a0239031d6" => :catalina sha256 "fb6cc38c45be4650a4a750a314cec27f6f7643dc7c22a1f5abae347e1b39b388" => :mojave sha256 "b2f7450e005f4eb22bfaf650fe7741fa8629393a947b4dd48c9f91e7fc258113" => :high_sierra end head do url "https://github.com/neovim/neovim.git" depends_on "utf8proc" end depends_on "cmake" => :build depends_on "luarocks" => :build depends_on "pkg-config" => :build depends_on "gettext" depends_on "libtermkey" depends_on "libuv" depends_on "libvterm" depends_on "luajit" depends_on "msgpack" depends_on "unibilium" resource "mpack" do url "https://github.com/libmpack/libmpack-lua/releases/download/1.0.7/libmpack-lua-1.0.7.tar.gz" sha256 "68565484a3441d316bd51bed1cacd542b7f84b1ecfd37a8bd18dd0f1a20887e8" end resource "lpeg" do url "https://luarocks.org/manifests/gvvaughan/lpeg-1.0.2-1.src.rock" sha256 "e0d0d687897f06588558168eeb1902ac41a11edd1b58f1aa61b99d0ea0abbfbc" end resource "inspect" do url "https://luarocks.org/manifests/kikito/inspect-3.1.1-0.src.rock" sha256 "ea1f347663cebb523e88622b1d6fe38126c79436da4dbf442674208aa14a8f4c" end resource "lua-compat-5.3" do url "https://github.com/keplerproject/lua-compat-5.3/archive/v0.7.tar.gz" sha256 "bec3a23114a3d9b3218038309657f0f506ad10dfbc03bb54e91da7e5ffdba0a2" end resource "luv" do url "https://github.com/luvit/luv/releases/download/1.30.0-0/luv-1.30.0-0.tar.gz" sha256 "5cc75a012bfa9a5a1543d0167952676474f31c2d7fd8d450b56d8929dbebb5ef" end def install resources.each do |r| r.stage(buildpath/"deps-build/build/src/#{r.name}") end ENV.prepend_path "LUA_PATH", "#{buildpath}/deps-build/share/lua/5.1/?.lua" ENV.prepend_path "LUA_CPATH", "#{buildpath}/deps-build/lib/lua/5.1/?.so" lua_path = "--lua-dir=#{Formula["luajit"].opt_prefix}" cd "deps-build" do %w[ mpack/mpack-1.0.7-0.rockspec lpeg/lpeg-1.0.2-1.src.rock inspect/inspect-3.1.1-0.src.rock ].each do |rock| dir, rock = rock.split("/") cd "build/src/#{dir}" do output = Utils.popen_read("luarocks", "unpack", lua_path, rock, "--tree=#{buildpath}/deps-build") unpack_dir = output.split("\n")[-2] cd unpack_dir do system "luarocks", "make", lua_path, "--tree=#{buildpath}/deps-build" end end end cd "build/src/luv" do cmake_args = std_cmake_args.reject { |s| s["CMAKE_INSTALL_PREFIX"] } cmake_args += %W[ -DCMAKE_INSTALL_PREFIX=#{buildpath}/deps-build -DLUA_BUILD_TYPE=System -DWITH_SHARED_LIBUV=ON -DBUILD_SHARED_LIBS=OFF -DBUILD_MODULE=OFF -DLUA_COMPAT53_DIR=#{buildpath}/deps-build/build/src/lua-compat-5.3 ] system "cmake", ".", *cmake_args system "make", "install" end end mkdir "build" do cmake_args = std_cmake_args cmake_args += %W[ -DLIBLUV_INCLUDE_DIR=#{buildpath}/deps-build/include -DLIBLUV_LIBRARY=#{buildpath}/deps-build/lib/libluv.a ] system "cmake", "..", *cmake_args system "make", "install" end end test do (testpath/"test.txt").write("Hello World from Vim!!") system bin/"nvim", "--headless", "-i", "NONE", "-u", "NONE", "+s/Vim/Neovim/g", "+wq", "test.txt" assert_equal "Hello World from Neovim!!", (testpath/"test.txt").read.chomp end end