aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rasqal.rb
blob: 3e59fc6be4fb65a0829e0703582915a7b43bf520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Rasqal <Formula
  url 'http://download.librdf.org/source/rasqal-0.9.20.tar.gz'
  homepage 'http://librdf.org/rasqal/'
  md5 'c45b6cd784298e264e8757d14355ecce'

  depends_on 'raptor'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
    system "make install"
  end
end