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

class Rasqal < Formula
  homepage 'http://librdf.org/rasqal/'
  url 'http://download.librdf.org/source/rasqal-0.9.29.tar.gz'
  sha1 'a005556bf62d44a8fa1cc2faf931f78ed4516852'

  depends_on 'raptor'

  def install
    system './configure', "--prefix=#{prefix}",
                          "--with-html-dir=#{share}/doc",
                          '--disable-dependency-tracking'
    system "make install"
  end
end