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