aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rasqal.rb
blob: 04a190fcc134c991d26026898a38a29b50cc1681 (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.25.tar.gz'
  homepage 'http://librdf.org/rasqal/'
  md5 'ee12d7ad59c581eb65db89c851672c0a'

  depends_on 'raptor'

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