TerminalImageViewer/tiv.rb

33 lines
2.4 KiB
Ruby
Raw Normal View History

2021-05-20 06:04:20 +02:00
class Tiv < Formula
2021-05-19 03:19:02 +02:00
desc "Display images in a terminal using block graphic characters"
homepage "https://github.com/stefanhaustein/TerminalImageViewer"
url "https://github.com/stefanhaustein/TerminalImageViewer/archive/v1.1.0.tar.gz"
sha256 "727ddaa048643cb0a13e23bc308415060d99d8b1853883ad339ad7b952050d61"
head "https://github.com/stefanhaustein/TerminalImageViewer.git"
2021-07-21 07:22:45 +02:00
uses_from_macos "curl" => :test
2021-05-19 03:19:02 +02:00
depends_on "imagemagick"
def install
cd "src/main/cpp" do
if OS.mac?
system "c++", "-std=c++17", "-Wall", "-fpermissive", "-fexceptions", "-O2",
"-c", "tiv.cpp", "-o", "tiv.o"
system "c++", "tiv.o", "-o", "tiv", "-L/usr/local/opt/gcc/lib/gcc/11/", "-pthread",
"-s"
else
system "make"
2021-07-21 07:02:17 +02:00
end
2021-05-19 03:19:02 +02:00
bin.install "tiv"
end
end
test do
# Downloads a public domain test file from wikimedia commons and displays it.
# NOTE: Test will fail. Will fix when I get to my mac.
2021-07-21 07:22:45 +02:00
system "curl -o \"test.png\" https://upload.wikimedia.org/wikipedia/commons/2/24/Cornell_box.png"
assert_equal "▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
",
shell_output("#{bin}/tiv -0 -w 400 -h 400 test.png").strip
2021-05-19 03:19:02 +02:00
end
end