homebrew-core/Formula/gqlplus.rb
Justin Wunderle efb9b10b1f 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>
2011-02-27 21:23:02 +00:00

13 lines
386 B
Ruby

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