49 lines
1.3 KiB
Ruby
49 lines
1.3 KiB
Ruby
class Questdb < Formula
|
|
desc "Time Series Database"
|
|
homepage "https://questdb.io"
|
|
url "https://github.com/questdb/questdb/releases/download/6.6.1/questdb-6.6.1-no-jre-bin.tar.gz"
|
|
sha256 "1dbe6af2dbf7465044542380cab2ce9273c5dfc4b62b50342b237b5cd891a68d"
|
|
license "Apache-2.0"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "f0e6d5980d5b234edfa721fb637de22ad7d3e4a6cd67cb564bbbc21fab06d60d"
|
|
end
|
|
|
|
depends_on "openjdk@11"
|
|
|
|
def install
|
|
rm_rf "questdb.exe"
|
|
libexec.install Dir["*"]
|
|
(bin/"questdb").write_env_script libexec/"questdb.sh", Language::Java.overridable_java_home_env("11")
|
|
inreplace libexec/"questdb.sh", "/usr/local/var/questdb", var/"questdb"
|
|
end
|
|
|
|
def post_install
|
|
# Make sure the var/questdb directory exists
|
|
(var/"questdb").mkpath
|
|
end
|
|
|
|
service do
|
|
run [opt_bin/"questdb", "start", "-d", var/"questdb", "-n", "-f"]
|
|
keep_alive successful_exit: false
|
|
error_log_path var/"log/questdb.log"
|
|
log_path var/"log/questdb.log"
|
|
working_dir var/"questdb"
|
|
end
|
|
|
|
test do
|
|
mkdir_p testpath/"data"
|
|
begin
|
|
fork do
|
|
exec "#{bin}/questdb start -d #{testpath}/data"
|
|
end
|
|
sleep 30
|
|
output = shell_output("curl -Is localhost:9000/index.html")
|
|
sleep 4
|
|
assert_match "questDB", output
|
|
ensure
|
|
system "#{bin}/questdb", "stop"
|
|
end
|
|
end
|
|
end
|