aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/raptor.rb
blob: 4a0325dd9282b0c7f2e2da84fca1c823688f33b7 (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.14.tar.gz'
  sha1 'f0dc155ee616aac0e5397dd659519c9d0a262f21'

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