class Ispell < Formula desc "International Ispell" homepage "https://lasr.cs.ucla.edu/geoff/ispell.html" url "https://www.cs.hmc.edu/~geoff/tars/ispell-3.4.00.tar.gz" mirror "https://deb.debian.org/debian/pool/main/i/ispell/ispell_3.4.00.orig.tar.gz" sha256 "5dc42e458635f218032d3ae929528e5587b1e7247564f0e9f9d77d5ccab7aec2" bottle do sha256 "c4a726692b88e792bd82ee0b4cd527e8f69ab0a244f839486087e2b291947afe" => :catalina sha256 "5e4a1b0bd20714be296012b2b90c7bb92bfa01b997a4d4efccc369b9553a8eb8" => :mojave sha256 "67142ae321c800cc9f4941e8d4e665f195dad06cc483cde11d51fed7a0cde426" => :high_sierra sha256 "697a51b2d4e5d568ef18fdfe5943691a534145829522e3d4bb7d25f2f7978c9f" => :sierra sha256 "81d9f6f9aca0f92ba3bece2ad22d0b0bca29c719304c6c5e8e59b02a3c8763da" => :el_capitan sha256 "ff46baf7aa6daf42fddde68897bd80dbb073922b4556c502e7b0072656b48498" => :yosemite sha256 "f1ee90dcc76682d17c2b758d2a896493448753acc0e556e9b0c8bf7ec0f552df" => :mavericks end uses_from_macos "ncurses" def install ENV.deparallelize # No configure script, so do this all manually cp "local.h.macos", "local.h" chmod 0644, "local.h" inreplace "local.h" do |s| s.gsub! "/usr/local", prefix s.gsub! "/man/man", "/share/man/man" s.gsub! "/lib", "/lib/ispell" end chmod 0644, "correct.c" inreplace "correct.c", "getline", "getline_ispell" system "make", "config.sh" chmod 0644, "config.sh" inreplace "config.sh", "/usr/share/dict", "#{share}/dict" (lib/"ispell").mkpath system "make", "install" end test do assert_equal "BOTHER BOTHE/R BOTH/R", `echo BOTHER | #{bin}/ispell -c`.chomp end end