2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-14 18:19:58 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Rasqal < Formula
|
2009-12-23 21:51:01 +00:00
|
|
|
homepage 'http://librdf.org/rasqal/'
|
2012-05-15 15:45:15 +00:00
|
|
|
url 'http://download.librdf.org/source/rasqal-0.9.29.tar.gz'
|
|
|
|
sha1 'a005556bf62d44a8fa1cc2faf931f78ed4516852'
|
2009-09-14 18:19:58 +00:00
|
|
|
|
2009-09-21 18:00:13 +00:00
|
|
|
depends_on 'raptor'
|
2009-09-14 18:19:58 +00:00
|
|
|
|
|
|
|
def install
|
2012-05-15 15:45:15 +00:00
|
|
|
system './configure', "--prefix=#{prefix}",
|
|
|
|
"--with-html-dir=#{share}/doc",
|
|
|
|
'--disable-dependency-tracking'
|
2009-09-14 18:19:58 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|