2011-02-06 05:14:36 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gqlplus < Formula
|
2011-02-06 05:14:36 +00:00
|
|
|
homepage 'http://gqlplus.sourceforge.net/'
|
2014-02-27 14:19:55 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/gqlplus/gqlplus/1.15/gqlplus-1.15.tar.gz'
|
2013-11-30 20:11:29 +00:00
|
|
|
sha1 '6ae3ecda0259656d6001ce5d9f956067aa720dec'
|
|
|
|
|
|
|
|
depends_on 'readline'
|
2011-02-06 05:14:36 +00:00
|
|
|
|
|
|
|
def install
|
2013-11-30 20:11:38 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2013-01-28 02:57:31 +00:00
|
|
|
"--prefix=#{prefix}"
|
2011-02-06 05:14:36 +00:00
|
|
|
system "make"
|
|
|
|
bin.install "gqlplus"
|
|
|
|
end
|
|
|
|
end
|