-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #30. Signed-off-by: Noel Kwan <[email protected]>
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
class RisingwaveAT17Standalone < Formula | ||
desc "Distributed SQL database for stream processing" | ||
homepage "https://github.com/risingwavelabs/risingwave" | ||
url "https://github.com/risingwavelabs/risingwave/archive/refs/tags/v1.7.0-standalone.tar.gz" | ||
version "1.7.0-standalone" | ||
sha256 "adae6edfbbc5bf494f5f5a9ea89f21bf1da3bda68d3e98a58a8738d1a09f1acd" | ||
license "Apache-2.0" | ||
head "https://github.com/risingwavelabs/risingwave.git", branch: "main" | ||
|
||
bottle do | ||
root_url "https://github.com/risingwavelabs/homebrew-risingwave/releases/download/[email protected]" | ||
sha256 cellar: :any, arm64_ventura: "23a2b72ed6b1f6ff3b416ecd6b4800cf9a6dbd1ed25de7af68e0fcfbfe8d1e7e" | ||
sha256 cellar: :any, ventura: "9f8b2819dbdb9f10fbd4174b0c681127c7a559138da47a81d1dac327b8e5bba6" | ||
sha256 cellar: :any, monterey: "999e4308dd43c94e90f538bc2af391af551f4344a58f28f16321fbc37ef3dc1e" | ||
end | ||
|
||
depends_on "cmake" => :build | ||
depends_on "protobuf" => :build | ||
depends_on "rustup-init" => :build | ||
depends_on "openssl@3" | ||
depends_on "xz" | ||
|
||
def install | ||
# this will install the necessary cargo/rustup toolchain bits in HOMEBREW_CACHE | ||
system "#{Formula["rustup-init"].bin}/rustup-init", | ||
"-qy", "--no-modify-path", | ||
"--default-toolchain", "none" | ||
ENV.prepend_path "PATH", HOMEBREW_CACHE/"cargo_cache/bin" | ||
|
||
# Remove `RUSTFLAGS` env var set by Homebrew, or it will override the one specified | ||
# in `.cargo/config.toml`. | ||
# | ||
# https://github.com/Homebrew/brew/pull/15544#issuecomment-1628639703 | ||
ENV.delete "RUSTFLAGS" | ||
|
||
# Homebrew changes cxx flags, and CMake doesn't pick them up, so rdkafka-sys build fails. | ||
# We cannot pass CMake flags (`std_cmake_args`) because it's in their build.rs. | ||
# | ||
# Some refs that might be useful: | ||
# https://github.com/Homebrew/homebrew-core/pull/51949#issuecomment-601943075 | ||
# https://github.com/Homebrew/brew/pull/7134 | ||
ENV["SDKROOT"] = MacOS.sdk_path_if_needed | ||
|
||
# Remove `"-Clink-arg=xxx/ld64.lld"` to avoid dependency on LLVM. | ||
# If we `depends_on "llvm" => :build`, it will somehow corrupt the resolution of the C++ | ||
# compiler when building `cxx` crate. Didn't investigate further. | ||
inreplace ".cargo/config.toml" do |s| | ||
s.gsub!(/"-Clink-arg=.*ld64.lld",?/, "") | ||
end | ||
|
||
system "cargo", "install", | ||
"--bin", "risingwave", | ||
"--features", "rw-static-link", | ||
*std_cargo_args(path: "src/cmd_all") # "--locked", "--root ...", "--path src/cmd_all" | ||
end | ||
|
||
test do | ||
system "#{bin}/risingwave", "--help" | ||
end | ||
end |