homebrew-core/Formula/kakoune.rb
2019-10-11 17:40:43 +02:00

31 lines
1,017 B
Ruby

class Kakoune < Formula
desc "Selection-based modal text editor"
homepage "https://github.com/mawww/kakoune"
url "https://github.com/mawww/kakoune/releases/download/v2019.07.01/kakoune-2019.07.01.tar.bz2"
sha256 "8cf978499000bd71a78736eaee5663bd996f53c4e610c62a9bd97502a3ed6fd3"
head "https://github.com/mawww/kakoune.git"
bottle do
cellar :any
sha256 "0cd60b373efe3e4b89576295a374405c4a3819a945c091b18e18d18de316879c" => :catalina
sha256 "7cc097196707ad5f212b825b66f9de7f128240295fa7ccd097314c5a1145b358" => :mojave
sha256 "755433189f53b8a410ea4659e8d9c20b26c657c4983ebd882d297118856428db" => :high_sierra
end
depends_on "asciidoc" => :build
depends_on "docbook-xsl" => :build
depends_on :macos => :high_sierra # needs C++17
depends_on "ncurses"
def install
ENV["XML_CATALOG_FILES"] = "#{etc}/xml/catalog"
cd "src" do
system "make", "install", "debug=no", "PREFIX=#{prefix}"
end
end
test do
system bin/"kak", "-ui", "dummy", "-e", "q"
end
end