class Hunspell < Formula desc "Spell checker and morphological analyzer" homepage "https://hunspell.github.io" url "https://github.com/hunspell/hunspell/archive/v1.4.1.tar.gz" sha256 "c4476aff0ced52eec334eae1e8d3fdaaebdd90f5ecd0b57cf2a92a6fd220d1bb" bottle do sha256 "9e39c10d16b5d2aad7ec52d4b4d6d056405f549d9ed0142b31f8313380531fee" => :el_capitan sha256 "1ba6cfc5387c24503baac98c2dabcc7fd1f372ec48d624efc83a8033c06b4c87" => :yosemite sha256 "b82cfbed16eaa49053704eecba80831cf7a3fe2b3e3f5c43028c102d3acf7fef" => :mavericks end depends_on "readline" conflicts_with "freeling", :because => "both install 'analyze' binary" # hunspell does not prepend $HOME to all USEROODIRs # https://github.com/hunspell/hunspell/issues/32 patch do url "https://raw.githubusercontent.com/Homebrew/formula-patches/684440d/hunspell/prepend_user_home_to_useroodirs.diff" sha256 "456186c9e569c51065e7df2a521e325d536ba4627d000ab824f7e97c1e4bc288" end def install ENV.deparallelize # The following line can be removed on release of next stable version inreplace "configure", "1.4.0", "1.4.1" system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-ui", "--with-readline" system "make" system "make", "install" pkgshare.install "tests" end def caveats; <<-EOS.undent Dictionary files (*.aff and *.dic) should be placed in ~/Library/Spelling/ or /Library/Spelling/. Homebrew itself provides no dictionaries for Hunspell, but you can download compatible dictionaries from other sources, such as https://wiki.openoffice.org/wiki/Dictionaries . EOS end test do cp_r "#{pkgshare}/tests/.", testpath system "./test.sh" end end