aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlexis Hildebrandt2009-12-30 14:04:49 +0100
committerMax Howell2010-01-24 12:27:39 +0000
commit209402e1a4bbbbfa0b269645394b750f37248e95 (patch)
tree8c47ba8596c9567179bfadf52c6561f4eb45d7ee /Library/Formula
parentf0fe338bc4351fed95fecc281dc24667df04d16b (diff)
downloadhomebrew-209402e1a4bbbbfa0b269645394b750f37248e95.tar.bz2
Webkit2png
A command line tool that creates png screenshots of webpages. With tall or wide pages that would normally require scrolling, it takes screenshots of the whole webpage, not just the area that would be visible in a browser window. Webkit2png makes use of WebKit, the rendering engine used in Safari.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/webkit2png.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Formula/webkit2png.rb b/Library/Formula/webkit2png.rb
new file mode 100644
index 000000000..0577dfe79
--- /dev/null
+++ b/Library/Formula/webkit2png.rb
@@ -0,0 +1,11 @@
+require 'formula'
+
+class Webkit2png <Formula
+ head 'git://github.com/paulhammond/webkit2png.git'
+ homepage 'http://www.paulhammond.org/webkit2png/'
+ md5 ''
+
+ def install
+ bin.install 'webkit2png'
+ end
+end