blob: 2ce2d5e69a4fb04346740893d8dd1e01ddb19760 (
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.19.tar.gz'
@homepage='http://librdf.org/raptor/'
@md5='50acbd3b416c3f9e1a3a8ddb825bac25'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|