homebrew-core/Formula/flif.rb

41 lines
1.5 KiB
Ruby

class Flif < Formula
desc "Free Loseless Image Format"
homepage "http://flif.info/"
# When updating, please check if FLIF switched to CMake yet
url "https://github.com/FLIF-hub/FLIF/archive/v0.3.tar.gz"
sha256 "aa02a62974d78f8109cff21ecb6d805f1d23b05b2db7189cfdf1f0d97ff89498"
head "https://github.com/FLIF-hub/FLIF.git"
bottle do
cellar :any
sha256 "40b85a93738e195a6eec2b3bf9bfe7b2831f74d464e1e5145681f9ec2c3cfe68" => :high_sierra
sha256 "756f685e55f7c798743756723815fb3f39d82ef92f5cc78eb175d8cea52498a3" => :sierra
sha256 "3fd4e69366470a6810815d111a8e0188c627fe7d50375cd93c0da00ad6617fb2" => :el_capitan
sha256 "bbd4e35f6947e3b304469031f42c3720a94c10d9fb7540eed9e7b08bef6ee319" => :yosemite
end
depends_on "pkg-config" => :build
depends_on "libpng"
depends_on "sdl2"
resource "test_c" do
url "https://raw.githubusercontent.com/FLIF-hub/FLIF/dcc2011/tools/test.c"
sha256 "a20b625ba0efdb09ad21a8c1c9844f686f636656f0e9bd6c24ad441375223afe"
end
def install
system "make", "PREFIX=#{prefix}", "install", "install-dev"
doc.install "doc/flif.pdf"
end
test do
testpath.install resource("test_c")
system ENV.cc, "test.c", "-I#{include}", "-L#{lib}", "-lflif", "-o", "test"
system "./test", "dummy.flif"
system bin/"flif", "-i", "dummy.flif"
system bin/"flif", "-I", test_fixtures("test.png"), "test.flif"
system bin/"flif", "-d", "test.flif", "test.png"
assert_predicate testpath/"test.png", :exist?, "Failed to decode test.flif"
end
end