aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rlwrap.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-18 15:52:04 -0700
committerAdam Vandenberg2014-05-18 15:52:04 -0700
commit867fb28dd82d034db4b66a121b65114886c8d078 (patch)
tree986f19f0d29b417a1c24b6ba627ca475e847ed3e /Library/Formula/rlwrap.rb
parent087897a67e3d2dbbae1a7d637e07868b136f8eb7 (diff)
downloadhomebrew-867fb28dd82d034db4b66a121b65114886c8d078.tar.bz2
rlwrap 0.41
Diffstat (limited to 'Library/Formula/rlwrap.rb')
-rw-r--r--Library/Formula/rlwrap.rb15
1 files changed, 8 insertions, 7 deletions
diff --git a/Library/Formula/rlwrap.rb b/Library/Formula/rlwrap.rb
index c5c414589..c0abe2eda 100644
--- a/Library/Formula/rlwrap.rb
+++ b/Library/Formula/rlwrap.rb
@@ -1,15 +1,16 @@
-require 'formula'
+require "formula"
class Rlwrap < Formula
- homepage 'http://utopia.knoware.nl/~hlub/rlwrap/'
- url 'http://utopia.knoware.nl/~hlub/rlwrap/rlwrap-0.37.tar.gz'
- sha1 'c8fc5e7798a7c618a22583c56fa38d344700cc2f'
+ homepage "http://utopia.knoware.nl/~hlub/rlwrap/"
+ url "http://utopia.knoware.nl/~hlub/rlwrap/rlwrap-0.41.tar.gz"
+ sha1 "9fbc6d977255a6081360230917a293b6fd9c5fbe"
- depends_on 'readline'
+ depends_on "readline"
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
"--prefix=#{prefix}"
- system "make install"
+ system "make", "install"
end
end