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:
parent
f722fd471c
commit
efb9b10b1f
1 changed files with 13 additions and 0 deletions
13
Formula/gqlplus.rb
Normal file
13
Formula/gqlplus.rb
Normal 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
|
Loading…
Reference in a new issue