bitcode_retriever icon indicating copy to clipboard operation
bitcode_retriever copied to clipboard

Add homebrew tap

Open mgrebenets opened this issue 9 years ago • 1 comments

More like a feature request. It would be nice to have a homebrew tap with formula for this tool, to be able to install it via HOmebrew.

mgrebenets avatar Feb 06 '17 00:02 mgrebenets

Here's a quick head only formula if someone wants to push it to a tap or something:

class BitcodeRetriever < Formula
  desc "URL extractor/launcher"
  homepage "https://github.com/AlexDenisov/bitcode_retriever"
  head "https://github.com/AlexDenisov/bitcode_retriever.git"

  depends_on "libxml2"

  def install
    system "make"
    bin.install "build/bitcode_retriever"
  end
end

keith avatar Feb 08 '17 03:02 keith