46665f84f7
Upgrade raptor to version 0.9.29 and adjust the location of the html docs from gtk-doc to the usual location in share. For this app, the standard helper path `doc` results in `doc/rasqal/rasqal`. So `share/doc` is used to eliminate the duplicate `rasqal` path. Note: The homepage for rasqal mentions an upcoming API change: 'RDQL support will be removed in the next release (0.9.30)' Closes Homebrew/homebrew#12259. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
16 lines
432 B
Ruby
16 lines
432 B
Ruby
require 'formula'
|
|
|
|
class Rasqal < Formula
|
|
homepage 'http://librdf.org/rasqal/'
|
|
url 'http://download.librdf.org/source/rasqal-0.9.29.tar.gz'
|
|
sha1 'a005556bf62d44a8fa1cc2faf931f78ed4516852'
|
|
|
|
depends_on 'raptor'
|
|
|
|
def install
|
|
system './configure', "--prefix=#{prefix}",
|
|
"--with-html-dir=#{share}/doc",
|
|
'--disable-dependency-tracking'
|
|
system "make install"
|
|
end
|
|
end
|