class Unrtf < Formula desc "RTF to other formats converter" homepage "https://www.gnu.org/software/unrtf/" url "https://ftp.gnu.org/gnu/unrtf/unrtf-0.21.9.tar.gz" mirror "https://ftpmirror.gnu.org/unrtf/unrtf-0.21.9.tar.gz" sha256 "22a37826f96d754e335fb69f8036c068c00dd01ee9edd9461a36df0085fb8ddd" head "https://hg.savannah.gnu.org/hgweb/unrtf/", :using => :hg bottle do sha256 "2185683e84438c36ba6297451d786490712c60e0251f84985e8a2c5bcbdb4a49" => :mojave sha256 "20b25e70ca6dce766d851b7bafef64adf81633ff8cf6cb5ed97c70a4abbc3c60" => :high_sierra sha256 "6d305effeb3f7b8196db7c0746c2efb3170a809186916d7380ee35390cc9786b" => :sierra sha256 "2d658e54c0f66ae90764c8588fa7181c68d69d505336747b9bd5e496ba7b99d6" => :el_capitan sha256 "42737f31a7ea06592c2ad22a48f0e2537c0cd025129870399bd4f0fbe7362a98" => :yosemite sha256 "852bd896c8537489400e646ed41f2876079e124203e493cfc1e2d7f51d024726" => :mavericks end depends_on "autoconf" => :build depends_on "automake" => :build def install system "./bootstrap" system "./configure", "LIBS=-liconv", "--prefix=#{prefix}" system "make", "install" end test do (testpath/"test.rtf").write <<~'EOS' {\rtf1\ansi {\b hello} world } EOS expected = <<~EOS hello world EOS assert_equal expected, shell_output("#{bin}/unrtf --html test.rtf") end end