aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pngcheck.rb
blob: 6fe933f55a7c8f4104c902d1b2deae50e59a14e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Pngcheck < Formula
  homepage 'http://www.libpng.org/pub/png/apps/pngcheck.html'
  url 'https://downloads.sourceforge.net/project/png-mng/pngcheck/2.3.0/pngcheck-2.3.0.tar.gz'
  sha1 'e7f1535abbf2f809e036a9a43c759eeac5e39350'

  def install
    system 'make pngcheck'
    bin.install 'pngcheck'
  end
end