2011-03-10 05:11:03 +00:00
|
|
|
class Advancecomp < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Recompression utilities for .PNG, .MNG, .ZIP, and .GZ files"
|
2015-08-24 18:09:51 +00:00
|
|
|
homepage "http://www.advancemame.it/comp-readme.html"
|
2015-08-24 05:19:18 +00:00
|
|
|
url "https://github.com/amadvance/advancecomp/releases/download/v1.20/advancecomp-1.20.tar.gz"
|
|
|
|
sha256 "590a447cfc7ab3a37ec707e13967a0046a81a888c561ebaff5415b1e946da67b"
|
2009-10-08 13:58:48 +00:00
|
|
|
|
2015-08-24 07:07:22 +00:00
|
|
|
bottle do
|
2016-02-15 23:09:29 +00:00
|
|
|
cellar :any_skip_relocation
|
|
|
|
revision 1
|
|
|
|
sha256 "b920a8b98b6b79b0531d03b72180e6dde7664da504f4943bcb237703347de1bd" => :el_capitan
|
|
|
|
sha256 "4c53c032983006823c7e119fd3f7516a9a9321bdd9d165a7ef0abaabc5b669cb" => :yosemite
|
|
|
|
sha256 "119316cdf32ce8129a09e786a31bd6c21d3b153eadd6cd55e098f78b6f1ed884" => :mavericks
|
2015-08-24 07:07:22 +00:00
|
|
|
end
|
|
|
|
|
2009-10-08 13:58:48 +00:00
|
|
|
def install
|
2012-02-09 05:01:06 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
2015-08-24 18:09:51 +00:00
|
|
|
"--enable-bzip2", "--prefix=#{prefix}", "--mandir=#{man}"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2009-10-08 13:58:48 +00:00
|
|
|
end
|
2014-06-11 22:47:29 +00:00
|
|
|
|
2014-06-17 03:20:39 +00:00
|
|
|
test do
|
2014-06-11 22:47:29 +00:00
|
|
|
system bin/"advdef", "--version"
|
|
|
|
system bin/"advpng", "--version"
|
|
|
|
end
|
2009-10-08 13:58:48 +00:00
|
|
|
end
|