Skip to content

Commit 6baef38

Browse files
authored
Merge pull request Homebrew#182594 from Homebrew/zshdb-license
zshdb: update license
2 parents 5d90858 + 9b27e58 commit 6baef38

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Formula/z/zshdb.rb

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ class Zshdb < Formula
33
homepage "https://github.com/rocky/zshdb"
44
url "https://downloads.sourceforge.net/project/bashdb/zshdb/1.1.4/zshdb-1.1.4.tar.gz"
55
sha256 "83749450ffe030c28e7b7d1d8b06aea63232504ff61f31f9becc5a5717e69638"
6-
license all_of: ["GPL-2.0-or-later", "GPL-3.0-or-later"]
6+
license all_of: [
7+
"GPL-2.0-or-later",
8+
"GPL-3.0-or-later", # COPYING, lib/term-highlight.py
9+
"HPND-sell-variant", # getopts_long.sh
10+
]
711

812
# We check the "zshdb" directory page because the bashdb project contains
913
# various software and zshdb releases may be pushed out of the SourceForge
@@ -20,6 +24,7 @@ class Zshdb < Formula
2024

2125
head do
2226
url "https://github.com/rocky/zshdb.git", branch: "master"
27+
2328
depends_on "autoconf" => :build
2429
depends_on "automake" => :build
2530
end
@@ -28,8 +33,9 @@ class Zshdb < Formula
2833

2934
def install
3035
system "./autogen.sh" if build.head?
31-
32-
system "./configure", "--with-zsh=#{HOMEBREW_PREFIX}/bin/zsh", *std_configure_args
36+
system "./configure", "--disable-silent-rules",
37+
"--with-zsh=#{HOMEBREW_PREFIX}/bin/zsh",
38+
*std_configure_args
3339
system "make", "install"
3440
end
3541

0 commit comments

Comments
 (0)