AlexDenisov / bitcode_retriever

Retrieves Bitcode from Mach-O binaries
MIT License
179 stars 32 forks source link

Add homebrew tap #8

Open mgrebenets opened 7 years ago

mgrebenets commented 7 years ago

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.

keith commented 7 years ago

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