37 lines
1.6 KiB
Ruby
37 lines
1.6 KiB
Ruby
class Jove < Formula
|
|
desc "Emacs-style editor with vi-like memory, CPU, and size requirements"
|
|
homepage "https://directory.fsf.org/wiki/Jove"
|
|
url "https://www.cs.toronto.edu/pub/hugh/jove-dev/jove4.16.0.73.tgz"
|
|
mirror "https://ftp.openbsd.org/pub/OpenBSD/distfiles/jove4.16.0.73.tgz"
|
|
sha256 "9c9e202607f5972c382098d10b63c815ac01e578f432626c982e6aa65000c630"
|
|
|
|
bottle do
|
|
sha256 arm64_big_sur: "410dc581e7eae19afab271eea74bd002fc7e48d4cfded7e4e8de33a277dc38b7"
|
|
sha256 big_sur: "d1e6814d17f0e79e20c2a0aea2791fb2d045621c89d84d9eba29358dfe284717"
|
|
sha256 catalina: "c232b6742b25b3ca53a7c5da2c2577d4bed34e244b2cf90a61e5a5a8ade20e7a"
|
|
sha256 mojave: "8ee0b5bfd6d4dab4b56551dc1bd5cf8b03909f833d90fb213be0c16babbb88af"
|
|
sha256 high_sierra: "852bb69e61f542d5741b4a442c72c8f72304468d0c1101c2843b1c272111a6d1"
|
|
sha256 sierra: "a4559511caca50cf08e01049dda2a35a9423b5c976bf0d930ba819afebc1387b"
|
|
sha256 el_capitan: "c083761f33516e9d18718b6f78f6468b9aa72c0c80bb625987c60c05cc4f1895"
|
|
sha256 yosemite: "4e741042364faa5ef07f7957d9e811c204561ecad03ebbcd98f82761211ec78c"
|
|
end
|
|
|
|
# Per MacPorts, avoid clash with libc getline
|
|
patch :p0 do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/3cada68f/jove/patch-getline.diff"
|
|
sha256 "96e557370d6e8924cc73bda8dbe65e54f4cc902785ffcf0056d8925bb4e77bf6"
|
|
end
|
|
|
|
def install
|
|
bin.mkpath
|
|
man1.mkpath
|
|
(lib/"jove").mkpath
|
|
|
|
system "make", "install", "JOVEHOME=#{prefix}", "MANDIR=#{man1}"
|
|
end
|
|
|
|
test do
|
|
assert_match "There's nothing to recover.", shell_output("#{lib}/jove/recover")
|
|
end
|
|
end
|