aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kühl2010-07-02 19:58:49 +0200
committerDavid Höppner2010-09-04 15:47:48 +0200
commit78f4e35e15476cd61912a0dc149b79db1e14d9ea (patch)
tree5ff622a4dfdc1e65d82f8a772e7ccce7c4487ce3
parent9123cdeb86b55c737607e8ff961a87a250f9c287 (diff)
downloadhomebrew-78f4e35e15476cd61912a0dc149b79db1e14d9ea.tar.bz2
New formula: `guilt`.
Guilt = Git + Quilt. Skip the documentation, building it requires `xmlto`. Signed-off-by: David Höppner <0xffea@gmail.com>
-rw-r--r--Library/Formula/guilt.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/guilt.rb b/Library/Formula/guilt.rb
new file mode 100644
index 000000000..34a1a0fe7
--- /dev/null
+++ b/Library/Formula/guilt.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Guilt <Formula
+ homepage 'http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/man/'
+ url 'http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/guilt-0.33.tar.bz2'
+ md5 'de2d3b82d3e08c8c6a940bd31f47d758'
+
+ depends_on 'git'
+
+ def install
+ # Skip the documentation, it depends on xmlto.
+ system "make", "PREFIX=#{prefix}", "install"
+ end
+end