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

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

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