homebrew-core/Formula/fourstore.rb
2018-01-27 19:29:34 +00:00

57 lines
1.8 KiB
Ruby

class Fourstore < Formula
desc "Efficient, stable RDF database"
homepage "https://github.com/4store/4store"
url "https://github.com/4store/4store/archive/v1.1.6.tar.gz"
sha256 "a0c8143fcceeb2f1c7f266425bb6b0581279129b86fdd10383bf1c1e1cab8e00"
bottle do
sha256 "413841f69291b5a871c9fefc96f8bd439348cbb5fe35e03e6670ac74cbe89771" => :high_sierra
sha256 "8f9626f161e1b3f063672cd07cc0d62d476eeaed5ca420aee90882d5efb9424f" => :sierra
sha256 "e19d98e6be69d8f75483403714a639cf21976a9d21b1c10252f5798049690581" => :el_capitan
sha256 "ce5b35020141bbe67afde2d1882ba39cdb00da479d64a833004d0688e9537581" => :yosemite
sha256 "b2ad54ba983117388e256212e55ea67e4f9548c0c7d0d1c1b8a420ac025b5f10" => :mavericks
end
depends_on "pkg-config" => :build
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "gettext"
depends_on "glib"
depends_on "pcre"
depends_on "raptor"
depends_on "rasqal"
def install
# Upstream issue garlik/4store#138
# Otherwise .git directory is needed
(buildpath/".version").write("v1.1.6")
system "./autogen.sh"
(var/"fourstore").mkpath
system "./configure", "--prefix=#{prefix}",
"--with-storage-path=#{var}/fourstore",
"--sysconfdir=#{etc}/fourstore"
system "make", "install"
end
def caveats; <<~EOS
Databases will be created at #{var}/fourstore.
Create and start up a database:
4s-backend-setup mydb
4s-backend mydb
Load RDF data:
4s-import mydb datafile.rdf
Start up HTTP SPARQL server without daemonizing:
4s-httpd -p 8000 -D mydb
See https://4store.danielknoell.de/trac/wiki/Documentation/ for more information.
EOS
end
test do
assert_match version.to_s, shell_output("#{bin}/4s-admin --version")
end
end