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

class Raptor < Formula
  homepage 'http://librdf.org/raptor/'
  url 'http://download.librdf.org/source/raptor2-2.0.12.tar.gz'
  sha1 'd485d409e93b79a9d3690ba2b9d15ca6e1c4b84e'

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