e2014aea1f
Remove duplication, link to the API documentation more often, tweak wording, add `@UniqMartin` as a maintainer, note `@jacknagel`'s and `@adamv`'s significant past contributions to Homebrew, delete some outdated or unneeded documentation, add some missing `Formula` API. entries and simplify/improve `CONTRIBUTING.md`. Closes Homebrew/homebrew#46179. Closes Homebrew/homebrew#46618. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
12 lines
339 B
Ruby
12 lines
339 B
Ruby
class BrewPip < Formula
|
|
desc "Install pip packages as homebrew formulae"
|
|
homepage "https://github.com/hanxue/brew-pip"
|
|
url "https://github.com/hanxue/brew-pip/archive/0.4.1.tar.gz"
|
|
sha256 "9049a6db97188560404d8ecad2a7ade72a4be4338d5241097d3e3e8e215cda28"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "bin/brew-pip"
|
|
end
|
|
end
|