aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorIan MacLeod2012-09-17 10:20:11 -0700
committerAdam Vandenberg2012-10-02 10:58:11 -0700
commit0f4628976d4ad23ed516e832c8e40d431c8739da (patch)
treea11152ceea598cdbb400bb4fffc0eae5013e0037 /Library/Formula
parentd6c0cbcc5db4247d605e05d298a9ddf9bf930330 (diff)
downloadhomebrew-0f4628976d4ad23ed516e832c8e40d431c8739da.tar.bz2
pngpaste 1.0.1
Closes #14985. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pngpaste.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/pngpaste.rb b/Library/Formula/pngpaste.rb
new file mode 100644
index 000000000..92f1fc352
--- /dev/null
+++ b/Library/Formula/pngpaste.rb
@@ -0,0 +1,12 @@
+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