class Jxrlib < Formula desc "Tools for JPEG-XR image encoding/decoding" homepage "https://archive.codeplex.com/?p=jxrlib" url "https://deb.debian.org/debian/pool/main/j/jxrlib/jxrlib_1.1.orig.tar.gz" sha256 "c7287b86780befa0914f2eeb8be2ac83e672ebd4bd16dc5574a36a59d9708303" bottle do cellar :any_skip_relocation sha256 "923729f8257b2ff225affe4a2a822f2dd40e799ca45be9ac423f04b5e4e603f0" => :mojave sha256 "6d24053d591022594ab92f880c56da4057a9e4f8d8ecb6f942e3558900385def" => :high_sierra sha256 "0eb8602ab389d9fff5bce803b085af322309592dc41aa0902b223e353a9f8abc" => :sierra sha256 "47c308b47ec8227d813a21c8092b32ada9b7f862aef102bf619d6bb19f0144e1" => :el_capitan sha256 "0dae977caf9e34289c9dd09f7e12bdf7158ccc42d9fa2dc00b4164b82c1caf3f" => :yosemite sha256 "cc49654146951a561ca6fce7c485f7f3f3511ab5549a7db8263e4e8ddc95e740" => :mavericks end def install system "make" # The current stable release (1.1) doesn't have a make 'install' target lib.install %w[libjxrglue.a libjpegxr.a] bin.install %w[JxrEncApp JxrDecApp] include.install %w[common image] include.install "jxrgluelib" => "glue" include.install "jxrtestlib" => "test" doc.install Dir["doc/*"] end test do bmp = "Qk06AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABgAAAAAAAQAAADDDgAAww4AAAAAAAAAAAAA////AA==".unpack("m")[0] infile = "test.bmp" outfile = "test.jxr" File.open(infile, "wb") { |f| f.write bmp } system bin/"JxrEncApp", "-i", infile, "-o", outfile system bin/"JxrDecApp", "-i", outfile, "-o", infile end end