class Libmspub < Formula desc "Interpret and import Microsoft Publisher content" homepage "https://wiki.documentfoundation.org/DLP/Libraries/libmspub" url "https://dev-www.libreoffice.org/src/libmspub/libmspub-0.1.2.tar.xz" sha256 "b0baabf82d20c08ad000e80fa02154ce2f2ffde1ee60240d6e3a917c3b35560f" revision 7 bottle do cellar :any sha256 "9ed0993ee29f49d6d985c635ff34f7829a24a5e97e05d807029920f786187865" => :high_sierra sha256 "9f792b907588715c3b821f4ea2d3811495bd8c66c2912769815cb6eb92a7ddfe" => :sierra sha256 "cbc7146537b0333d2b1b343fe66adc63d2a0c7efb987a154d44d8b8386a51b82" => :el_capitan end depends_on "pkg-config" => :build depends_on "boost" => :build depends_on "libwpg" => :build depends_on "libwpd" depends_on "icu4c" depends_on "librevenge" def install system "./configure", "--without-docs", "--disable-dependency-tracking", "--enable-static=no", "--disable-werror", "--disable-tests", "--prefix=#{prefix}" system "make", "install" end test do (testpath/"test.cpp").write <<~EOS #include #include int main() { librevenge::RVNGStringStream docStream(0, 0); libmspub::MSPUBDocument::isSupported(&docStream); return 0; } EOS system ENV.cxx, "test.cpp", "-o", "test", "-lrevenge-stream-0.0", "-I#{Formula["librevenge"].include}/librevenge-0.0", "-lmspub-0.1", "-I#{include}/libmspub-0.1", "-L#{lib}", "-L#{Formula["librevenge"].lib}" system "./test" end end