blob: d1a6c23fb54553f7bf136d16b835c8d1fa9688f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
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'
  option 'enable-debug', 'Enable debugging'
  def install
    args = ["--prefix=#{prefix}"]
    args << '--enable-debug' if build.include? 'enable-debug'
    system "./configure", *args
    system "make"
    system "make install"
  end
end
  |