diff options
| author | Justin Wunderle | 2011-02-06 00:14:36 -0500 |
|---|---|---|
| committer | Mike McQuaid | 2011-02-27 21:23:02 +0000 |
| commit | d9822732946146aba8d77c902d64ee0b359fbba3 (patch) | |
| tree | 9d14312753e8523894b98230778a3ae637d53e33 /Library/Formula | |
| parent | b3e8accb651b7ca7e94649c6fb60f09bcf6ae43e (diff) | |
| download | homebrew-d9822732946146aba8d77c902d64ee0b359fbba3.tar.bz2 | |
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 #4144.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gqlplus.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/gqlplus.rb b/Library/Formula/gqlplus.rb new file mode 100644 index 000000000..8e7dfc82f --- /dev/null +++ b/Library/Formula/gqlplus.rb @@ -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 |
