aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornibbles 2bits2012-05-15 08:45:15 -0700
committerJack Nagel2012-05-15 14:15:06 -0500
commit985c0d2914628f335d38a41241a6973e71c845b5 (patch)
treea9866213e2c2c5b7a6d15b173f49c50469abeee8
parent3f8a9059229143d95d2cc782ca47a562f6ee8e2a (diff)
downloadhomebrew-985c0d2914628f335d38a41241a6973e71c845b5.tar.bz2
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 #12259. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
-rw-r--r--Library/Formula/rasqal.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/rasqal.rb b/Library/Formula/rasqal.rb
index ad2e20dd4..6f30ab549 100644
--- a/Library/Formula/rasqal.rb
+++ b/Library/Formula/rasqal.rb
@@ -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