blob: 5c84162150888298c3a1d371a87f771a4588dc1e (
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
|