blob: 2da38ab3dbb34826d64231c37afde786207c39e9 (
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.10.tar.gz'
sha1 'b03c6dc87af9b5d3adb3edad29249f3184843dd6'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|