File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ class Zshdb < Formula
3
3
homepage "https://github.com/rocky/zshdb"
4
4
url "https://downloads.sourceforge.net/project/bashdb/zshdb/1.1.4/zshdb-1.1.4.tar.gz"
5
5
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
+ ]
7
11
8
12
# We check the "zshdb" directory page because the bashdb project contains
9
13
# various software and zshdb releases may be pushed out of the SourceForge
@@ -20,6 +24,7 @@ class Zshdb < Formula
20
24
21
25
head do
22
26
url "https://github.com/rocky/zshdb.git" , branch : "master"
27
+
23
28
depends_on "autoconf" => :build
24
29
depends_on "automake" => :build
25
30
end
@@ -28,8 +33,9 @@ class Zshdb < Formula
28
33
29
34
def install
30
35
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
33
39
system "make" , "install"
34
40
end
35
41
You can’t perform that action at this time.
0 commit comments