aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorLars2011-02-28 11:09:49 +0200
committerAdam Vandenberg2011-03-05 13:13:53 -0800
commit376b00d83d5fe8aa72a4785709e0cd63c2ed811e (patch)
tree7e9ff18968eddfe68fb6019da02d9f5ef5437c92 /Library/Formula
parentb5aa606e4e341301307b6a49a4384d482a5c1b3f (diff)
downloadhomebrew-376b00d83d5fe8aa72a4785709e0cd63c2ed811e.tar.bz2
thrulay 0.8
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/thrulay.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/thrulay.rb b/Library/Formula/thrulay.rb
new file mode 100644
index 000000000..3fa43164a
--- /dev/null
+++ b/Library/Formula/thrulay.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Thrulay <Formula
+ url 'http://shlang.com/thrulay/thrulay-0.8.tar.gz'
+ homepage 'http://shlang.com/thrulay/'
+ md5 '725fb13344608a652e818bcd16fe9ef6'
+
+ def install
+ inreplace "doc/Makefile.in", "@prefix@/man", "@prefix@/share/man"
+
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make" # make install does not make
+ system "make install"
+ end
+end