64 lines
2.0 KiB
Ruby
64 lines
2.0 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"
|
|
license "GPL-3.0"
|
|
revision 2
|
|
|
|
bottle do
|
|
sha256 arm64_monterey: "7aed20fb578c260f7d1764679d6ecaad032d68dd6bdacca012002ea815509a4a"
|
|
sha256 arm64_big_sur: "ad26cc8bd35c75d1988f97de3fbf3281061afc8002a082d61e99800168c5f4c3"
|
|
sha256 monterey: "6323983ec1a097a3a6a0473232531037223957d4c41ff2a5514315a7a21fb1af"
|
|
sha256 big_sur: "045a48f298bedfd23a4fc9d93191de328f686c4fea889a926e5f8b2d6e65baa7"
|
|
sha256 catalina: "e292048a085d8583547af82380dfcadbb92c15d28e56a75ae909ef853d363391"
|
|
sha256 x86_64_linux: "5a43f121222346aa9f89b8ed1609656ab0fbb696d05f719989ae751e0cae34b2"
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "dbus"
|
|
depends_on "gettext"
|
|
depends_on "glib"
|
|
depends_on "pcre"
|
|
depends_on "raptor"
|
|
depends_on "rasqal"
|
|
depends_on "readline"
|
|
|
|
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
|