homebrew-core/Formula/pathfinder.rb
Manuel Mayr 3573141c25 Pathfinder 0.41
Pathfinder is a purely relational XQuery Processor
and relational optimizer. This package enables people
to get a smooth installation experience rather than
building the whole package by themselves :)

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-29 12:07:57 -07:00

25 lines
555 B
Ruby

require 'formula'
class Pathfinder < Formula
homepage 'http://db.inf.uni-tuebingen.de/research/pathfinder'
url 'http://db.inf.uni-tuebingen.de/files/research/pathfinder/download/pathfinder-0.41.tar.gz'
sha1 '84f5581688e4c1dff27cf8e7d4354ee594f56970'
def options
[
['--enable-debug', 'enable full debbugging']
]
end
def install
args = ["--prefix=#{prefix}"]
if ARGV.include? '--enable-debug'
args << '--enable-debug'
end
system "./configure", *args
system "make"
system "make install"
end
end