New formula: gqlplus

gqlplus is a wrapper for Oracle's sqlplus that adds table and column
name tab-completion and readline-based command history and editing.

Closes Homebrew/homebrew#4144.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Justin Wunderle 2011-02-06 00:14:36 -05:00 committed by Mike McQuaid
parent f722fd471c
commit efb9b10b1f

13
Formula/gqlplus.rb Normal file
View file

@ -0,0 +1,13 @@
require 'formula'
class Gqlplus <Formula
url 'http://downloads.sourceforge.net/project/gqlplus/gqlplus/1.12/gqlplus-1.12.tar.gz'
homepage 'http://gqlplus.sourceforge.net/'
md5 'a6ff4af76f10fd11a17227e5f287b355'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
bin.install "gqlplus"
end
end