b6c2b7cc31
Closes Homebrew/homebrew#14985. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
286 B
Ruby
12 lines
286 B
Ruby
require 'formula'
|
|
|
|
class Pngpaste < Formula
|
|
homepage 'https://github.com/jcsalterego/pngpaste'
|
|
url 'https://github.com/jcsalterego/pngpaste/tarball/1.0.1'
|
|
sha1 '473af09e6d4ea0d72c4f5478780a03452cea90c5'
|
|
|
|
def install
|
|
system 'make', 'all'
|
|
bin.install 'pngpaste'
|
|
end
|
|
end
|