55 lines
2.1 KiB
Ruby
55 lines
2.1 KiB
Ruby
class Enchant < Formula
|
|
desc "Spellchecker wrapping library"
|
|
homepage "https://abiword.github.io/enchant/"
|
|
url "https://github.com/AbiWord/enchant/releases/download/v2.2.3/enchant-2.2.3.tar.gz"
|
|
sha256 "abd8e915675cff54c0d4da5029d95c528362266557c61c7149d53fa069b8076d"
|
|
|
|
bottle do
|
|
sha256 "4760ca13f888ce5cde5e6d70fd50bf694ab8a2801ad4f613ee4680816fa20fd4" => :mojave
|
|
sha256 "7df6114c8fce8c93e1c7cd981ea9b5e7033eca9d5706341a8eef8fbc53f57602" => :high_sierra
|
|
sha256 "5a3a649fb73ac04534056088294909e044c4665c99943020f668e1ca7ed99f3c" => :sierra
|
|
sha256 "4240a9afdab529f1349963fd7d0e90725365fcd8fa27a937d5fc115abad50a65" => :el_capitan
|
|
end
|
|
|
|
deprecated_option "with-python" => "with-python@2"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "python@2" => :optional
|
|
depends_on "glib"
|
|
depends_on "aspell"
|
|
|
|
# https://pythonhosted.org/pyenchant/
|
|
resource "pyenchant" do
|
|
url "https://files.pythonhosted.org/packages/9e/54/04d88a59efa33fefb88133ceb638cdf754319030c28aadc5a379d82140ed/pyenchant-2.0.0.tar.gz"
|
|
sha256 "fc31cda72ace001da8fe5d42f11c26e514a91fa8c70468739216ddd8de64e2a0"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--enable-relocatable"
|
|
|
|
system "make", "install"
|
|
|
|
ln_s "enchant-2.pc", lib/"pkgconfig/enchant.pc"
|
|
|
|
if build.with? "python@2"
|
|
resource("pyenchant").stage do
|
|
# Don't download and install distribute now
|
|
inreplace "setup.py", "ez_setup.use_setuptools()", ""
|
|
ENV["PYENCHANT_LIBRARY_PATH"] = lib/"libenchant-2.dylib"
|
|
system "python", "setup.py", "install", "--prefix=#{prefix}",
|
|
"--single-version-externally-managed",
|
|
"--record=installed.txt"
|
|
end
|
|
end
|
|
end
|
|
|
|
test do
|
|
text = "Teh quikc brwon fox iumpz ovr teh lAzy d0g"
|
|
enchant_result = text.sub("fox ", "").split.join("\n")
|
|
file = "test.txt"
|
|
(testpath/file).write text
|
|
assert_equal enchant_result, shell_output("#{bin}/enchant-2 -l #{file}").chomp
|
|
end
|
|
end
|