Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Formula/d/doltgres.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Doltgres < Formula
desc "Dolt for Postgres"
homepage "https://github.com/dolthub/doltgresql"
url "https://github.com/dolthub/doltgresql/archive/refs/tags/v0.52.2.tar.gz"
sha256 "69af3c15dc64653e6a6ad0ea1b25a1ca15a36ff4e3006a98ede8c3148061d8fc"
url "https://github.com/dolthub/doltgresql/archive/refs/tags/v0.52.3.tar.gz"
sha256 "6845271979c18e05061329faf4bcc9c4aa61d095cb53722fcefe516ccc0b1289"
license "Apache-2.0"
head "https://github.com/dolthub/doltgresql.git", branch: "main"

Expand All @@ -28,6 +28,8 @@ class Doltgres < Formula
depends_on "icu4c@77"

def install
ENV["CGO_ENABLED"] = "1" if OS.linux? && Hardware::CPU.arm?

system "./postgres/parser/build.sh"
system "go", "build", *std_go_args(ldflags: "-s -w"), "./cmd/doltgres"
end
Expand Down
Loading