Skip to content

Commit

Permalink
correct dependency to pass the CI (#1659, #1660)
Browse files Browse the repository at this point in the history
  • Loading branch information
YoshitakaMo authored Jan 15, 2024
1 parent 25f96a1 commit 50ff642
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 14 deletions.
3 changes: 1 addition & 2 deletions Formula/bandage.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ class Bandage < Formula
depends_on :linux
depends_on "qt"
depends_on "patchelf" => :build unless OS.mac?

uses_from_macos "zlib"
depends_on "zlib"

def install
bin.install "Bandage"
Expand Down
3 changes: 1 addition & 2 deletions Formula/kssd.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ class Kssd < Formula

# https://github.com/yhg926/public_kssd/issues/2
depends_on :linux

uses_from_macos "zlib"
depends_on "zlib"

def install
system "make"
Expand Down
4 changes: 2 additions & 2 deletions Formula/masurca.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ class Masurca < Formula
end

depends_on "boost" => :build
depends_on "bzip2"
depends_on "jellyfish"
depends_on :linux
depends_on "parallel"
depends_on "perl"
uses_from_macos "bzip2"
uses_from_macos "zlib"
depends_on "zlib"

def install
ENV.deparallelize
Expand Down
5 changes: 2 additions & 3 deletions Formula/squeakr.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@ class Squeakr < Formula
end

depends_on "boost"
depends_on "bzip2"
depends_on :linux # https://github.com/splatlab/squeakr/issues/41
depends_on "[email protected]"

uses_from_macos "bzip2"
uses_from_macos "zlib"
depends_on "zlib"

def install
inreplace "Makefile", "-lboost_system", "-lboost_system-mt"
Expand Down
7 changes: 2 additions & 5 deletions Formula/wtdbg2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,8 @@ class Wtdbg2 < Formula
end

depends_on "autoconf" => :build

# See https://github.com/brewsci/homebrew-bio/pull/504
depends_on :linux

uses_from_macos "zlib"
depends_on :linux # See https://github.com/brewsci/homebrew-bio/pull/504
depends_on "zlib"

def install
system "make"
Expand Down

0 comments on commit 50ff642

Please sign in to comment.