aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pngpaste.rb
blob: 27b8cab7f5b0c2e5c0256099f530e6f87f3e99e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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