homebrew-core/Formula/fastbit.rb

52 lines
2.3 KiB
Ruby

class Fastbit < Formula
desc "Open-source data processing library in NoSQL spirit"
homepage "https://sdm.lbl.gov/fastbit/"
# Upstream download url is blocking access: Cloudflare Error 1006: IP Address Restriction
# Use an archived copy from archive.org until upstream url is restored
url "https://web.archive.org/web/20210319090732/code.lbl.gov/frs/download.php/file/426/fastbit-2.0.3.tar.gz"
mirror "https://code.lbl.gov/frs/download.php/file/426/fastbit-2.0.3.tar.gz"
sha256 "1ddb16d33d869894f8d8cd745cd3198974aabebca68fa2b83eb44d22339466ec"
license "BSD-3-Clause"
revision 1
bottle do
sha256 cellar: :any, arm64_big_sur: "09dc75c92fa358be93b38636c4e747d0768af669e396b07854975684bdba8494"
sha256 cellar: :any, big_sur: "ce5bd1a75d14f7f11b2bdcb9cf63aebc63f3c722dd4a39380e50d2c8489b2347"
sha256 cellar: :any, catalina: "31e723c0610621033859357ab2a6dc373cf955847ab5c3dcf32696d260fa0de3"
sha256 cellar: :any, mojave: "0f9a32fe10c3e5c6e2826009f247bc55064ad5612dcda9724cda203c8b18e00e"
sha256 cellar: :any, high_sierra: "a7d7330e664e04191fe183050b588e4d3ad13aa101553f8f6965deb708c96d72"
sha256 cellar: :any_skip_relocation, x86_64_linux: "198c4ca4965a0f5285fe2c887295f34dbd0481ec7eb6898d5cf325688dccfb96"
end
depends_on "openjdk"
conflicts_with "iniparser", because: "both install `include/dictionary.h`"
# Fix compilation with Xcode 9, reported by email on 2018-03-13
patch do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/fe9d4e5/fastbit/xcode9.patch"
sha256 "e1198caf262a125d2216d70cfec80ebe98d122760ffa5d99d34fc33646445390"
end
def install
ENV.cxx11
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-java=#{Formula["openjdk"].opt_prefix}"
system "make", "install"
libexec.install lib/"fastbitjni.jar"
bin.write_jar_script libexec/"fastbitjni.jar", "fastbitjni"
end
test do
assert_equal prefix.to_s, shell_output("#{bin}/fastbit-config --prefix").chomp
(testpath/"test.csv").write <<~EOS
Potter,Harry
Granger,Hermione
Weasley,Ron
EOS
system bin/"ardea", "-d", testpath, "-m", "a:t,b:t", "-t", testpath/"test.csv"
end
end