|
1 | 1 | class Skeema < Formula |
2 | 2 | desc "Declarative pure-SQL schema management for MySQL and MariaDB" |
3 | 3 | homepage "https://www.skeema.io/" |
4 | | - url "https://github.com/skeema/skeema/archive/refs/tags/v1.13.0.tar.gz" |
5 | | - sha256 "05e526ae3b22ba3baaac69b7170a1095a18cf3c4b0600fe7691e0d5bc6476b44" |
| 4 | + url "https://github.com/skeema/skeema/archive/refs/tags/v1.13.1.tar.gz" |
| 5 | + sha256 "075fdd68c42f753263990f7001b0fa24f20e1675496e4cd7c3408271a246875a" |
6 | 6 | license "Apache-2.0" |
7 | 7 | head "https://github.com/skeema/skeema.git", branch: "main" |
8 | 8 |
|
9 | 9 | bottle do |
10 | | - sha256 cellar: :any_skip_relocation, arm64_tahoe: "5b4d3ad25616f19de0f4e6247209c2e9de4a3b141e635a54ea73433258913200" |
11 | | - sha256 cellar: :any_skip_relocation, arm64_sequoia: "1f69347b2966e25b60471a4d1ea58ed252ecbe6a3e786bf933defe59fe0bd6bf" |
12 | | - sha256 cellar: :any_skip_relocation, arm64_sonoma: "1f69347b2966e25b60471a4d1ea58ed252ecbe6a3e786bf933defe59fe0bd6bf" |
13 | | - sha256 cellar: :any_skip_relocation, arm64_ventura: "1f69347b2966e25b60471a4d1ea58ed252ecbe6a3e786bf933defe59fe0bd6bf" |
14 | | - sha256 cellar: :any_skip_relocation, sonoma: "8cd1d16410a84b309e2e9981854d1cdbce275ee6360821d83aeaec751d5c618d" |
15 | | - sha256 cellar: :any_skip_relocation, ventura: "8cd1d16410a84b309e2e9981854d1cdbce275ee6360821d83aeaec751d5c618d" |
16 | | - sha256 cellar: :any_skip_relocation, arm64_linux: "528e608c93454694ade2ac95f9c0a89b1645ebceeeb3904a088c5c16e21a50b9" |
17 | | - sha256 cellar: :any_skip_relocation, x86_64_linux: "50ac816cf45e24d02865b9d34cc0ec3ed700d8a5ae99321a8fa7494833901508" |
| 10 | + sha256 cellar: :any_skip_relocation, arm64_tahoe: "e41e0f1aef29a2784c551c6f55558fb4c6208310ce1db1b16b7937f4ac087bbf" |
| 11 | + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e41e0f1aef29a2784c551c6f55558fb4c6208310ce1db1b16b7937f4ac087bbf" |
| 12 | + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e41e0f1aef29a2784c551c6f55558fb4c6208310ce1db1b16b7937f4ac087bbf" |
| 13 | + sha256 cellar: :any_skip_relocation, sonoma: "26539db6b266b2be11bbfd355dbe554956e02849952cd7210b203f13d18909b2" |
| 14 | + sha256 cellar: :any_skip_relocation, arm64_linux: "49a176bd8c9c84a89025faa55f2b8b2f07382ca8baf0ef5296a7a0120ff18be2" |
| 15 | + sha256 cellar: :any_skip_relocation, x86_64_linux: "97028b7cbf5f1d3d4776c38f9995ef5baa58a66ed6e158c9d35fc3237d6deecb" |
18 | 16 | end |
19 | 17 |
|
20 | 18 | depends_on "go" => :build |
21 | 19 |
|
22 | 20 | def install |
23 | | - system "go", "build", *std_go_args(ldflags: "-s -w") |
| 21 | + ldflags = "-s -w -X main.version=#{version} -X main.commit=#{tap.user} -X main.date=#{time.iso8601}" |
| 22 | + system "go", "build", *std_go_args(ldflags:) |
24 | 23 | end |
25 | 24 |
|
26 | 25 | test do |
|
0 commit comments