homebrew-core/Formula/pngpaste.rb
Andrew Janke c8d2d41c1d Change github /tarball/ URLs to /archive/ for formulae L-Z
This takes care of a `brew audit` complaint.

Closes Homebrew/homebrew#18828.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-29 14:59:28 -07:00

12 lines
293 B
Ruby

require 'formula'
class Pngpaste < Formula
homepage 'https://github.com/jcsalterego/pngpaste'
url 'https://github.com/jcsalterego/pngpaste/archive/1.0.1.tar.gz'
sha1 'f81bf4a8bbda7fc1fde7a8bbb039fb1e25c4aee5'
def install
system 'make', 'all'
bin.install 'pngpaste'
end
end