2015-12-03 21:41:03 +00:00
|
|
|
class Catimg < Formula
|
|
|
|
desc "Insanely fast image printing in your terminal"
|
|
|
|
homepage "https://github.com/posva/catimg"
|
2017-02-01 01:40:28 +00:00
|
|
|
url "https://github.com/posva/catimg/archive/v2.2.2.tar.gz"
|
2017-01-31 18:36:53 +00:00
|
|
|
sha256 "1fa775db2bbb94dc2c66646c8a87edcfdcba878d686d61390d4264c2618673a9"
|
|
|
|
revision 1
|
2017-02-12 00:10:17 +00:00
|
|
|
head "https://github.com/posva/catimg.git"
|
2015-12-03 21:41:03 +00:00
|
|
|
|
2015-12-06 18:13:55 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any_skip_relocation
|
2017-02-03 14:18:09 +00:00
|
|
|
sha256 "916580406ef23c40923578539b1dea643c2a05577e0d210ddd2af4a4c6962297" => :sierra
|
|
|
|
sha256 "72a80596dc070c76b919c6babf385d723399b8348fb610ddd13c8e7577c030ae" => :el_capitan
|
|
|
|
sha256 "4d5ea927f341f399192979f32507c46c700f873ec54e2997b480b56f4173dbbb" => :yosemite
|
2015-12-06 18:13:55 +00:00
|
|
|
end
|
|
|
|
|
2015-12-03 21:41:03 +00:00
|
|
|
depends_on "cmake" => :build
|
|
|
|
|
|
|
|
def install
|
2017-01-31 18:36:53 +00:00
|
|
|
system "cmake", "-DMAN_OUTPUT_PATH=#{man1}", ".", *std_cmake_args
|
2015-12-03 21:41:03 +00:00
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/catimg", test_fixtures("test.png")
|
|
|
|
end
|
|
|
|
end
|