rasqal 0.9.29

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>
This commit is contained in:
nibbles 2bits 2012-05-15 08:45:15 -07:00 committed by Jack Nagel
parent 702df368ac
commit 46665f84f7

View file

@ -1,14 +1,16 @@
require 'formula'
class Rasqal < Formula
url 'http://download.librdf.org/source/rasqal-0.9.28.tar.gz'
homepage 'http://librdf.org/rasqal/'
md5 'a3662b8d9efef9d8ef0a3c182450fba2'
url 'http://download.librdf.org/source/rasqal-0.9.29.tar.gz'
sha1 'a005556bf62d44a8fa1cc2faf931f78ed4516852'
depends_on 'raptor'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system './configure', "--prefix=#{prefix}",
"--with-html-dir=#{share}/doc",
'--disable-dependency-tracking'
system "make install"
end
end