aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/rlwrap.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/rlwrap.rb b/Library/Formula/rlwrap.rb
new file mode 100644
index 000000000..6175931b2
--- /dev/null
+++ b/Library/Formula/rlwrap.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Rlwrap <Formula
+ url 'http://utopia.knoware.nl/~hlub/uck/rlwrap/rlwrap-0.32.tar.gz'
+ homepage 'http://utopia.knoware.nl/~hlub/uck/rlwrap'
+ md5 '441282a9a65c1d516c1c9a6821184539'
+
+ depends_on 'readline'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end