blob: ef81885ab81dc1cccaf1697d9e6556e0b48c8e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Raptor < Formula
  homepage 'http://librdf.org/raptor/'
  url 'http://download.librdf.org/source/raptor2-2.0.7.tar.gz'
  md5 '699073463467dc8eded2ca89de2ab2ea'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end
  |