diff options
Diffstat (limited to 'Library/Contributions')
| -rwxr-xr-x | Library/Contributions/cmd/brew-dirty.rb | 2 | ||||
| -rw-r--r-- | Library/Contributions/example-formula.rb | 8 | ||||
| -rw-r--r-- | Library/Contributions/manpages/brew.1.md | 10 |
3 files changed, 10 insertions, 10 deletions
diff --git a/Library/Contributions/cmd/brew-dirty.rb b/Library/Contributions/cmd/brew-dirty.rb index c0c1167f1..acf9885f8 100755 --- a/Library/Contributions/cmd/brew-dirty.rb +++ b/Library/Contributions/cmd/brew-dirty.rb @@ -1,4 +1,4 @@ -# See: http://github.com/mxcl/homebrew/issues/issue/1359 +# See: http://github.com/Homebrew/homebrew/issues/issue/1359 require 'keg' diff --git a/Library/Contributions/example-formula.rb b/Library/Contributions/example-formula.rb index f3cbf5d2d..345544f55 100644 --- a/Library/Contributions/example-formula.rb +++ b/Library/Contributions/example-formula.rb @@ -3,7 +3,7 @@ require 'formula' # This is a non-functional example formula to showcase all features and # therefore, its overly complex and dupes stuff just to comment on it. # You may want to use `brew create` to start your own new formula! -# Documentation: https://github.com/mxcl/homebrew/wiki/Formula-Cookbook +# Documentation: https://github.com/Homebrew/homebrew/wiki/Formula-Cookbook ## Naming -- Every Homebrew formula is a class of the type `Formula`. @@ -73,7 +73,7 @@ class ExampleFormula < Formula # Bottles are pre-built and added by the Homebrew maintainers for you. # If you maintain your own repository, you can add your own bottle links. # Read in the wiki about how to provide bottles: - # <https://github.com/mxcl/homebrew/wiki/Bottles> + # <https://github.com/Homebrew/homebrew/wiki/Bottles> bottle do root_url 'http://mikemcquaid.com' # Optional root to calculate bottle URLs prefix '/opt/homebrew' # Optional HOMEBREW_PREFIX in which the bottles were built. @@ -396,7 +396,7 @@ end class AdditionalStuff < Formula # Often, a second formula is used to download some resource - # NOTE: This is going to change when https://github.com/mxcl/homebrew/pull/21714 happens. + # NOTE: This is going to change when https://github.com/Homebrew/homebrew/pull/21714 happens. url 'https://example.com/additional-stuff.tar.gz' sha1 'deadbeef7890123456789012345678901234567890' end @@ -404,7 +404,7 @@ end __END__ # Room for a patch after the `__END__` # Read in the wiki about how to get a patch in here: -# https://github.com/mxcl/homebrew/wiki/Formula-Cookbook +# https://github.com/Homebrew/homebrew/wiki/Formula-Cookbook # In short, `brew install --interactive --git <formula>` and make your edits. # Then `git diff >> path/to/your/formula.rb` # Note, that HOMEBREW_PREFIX will be replaced in the path before it is diff --git a/Library/Contributions/manpages/brew.1.md b/Library/Contributions/manpages/brew.1.md index 6b0317569..e64f9b34c 100644 --- a/Library/Contributions/manpages/brew.1.md +++ b/Library/Contributions/manpages/brew.1.md @@ -415,7 +415,7 @@ by default: Documentation for the included external commands as well as instructions for creating your own can be found on the wiki: -<http://wiki.github.com/mxcl/homebrew/External-Commands> +<http://wiki.github.com/Homebrew/homebrew/External-Commands> ## SPECIFYING FORMULAE @@ -426,13 +426,13 @@ can take several different forms: e.g. `git`, `node`, `wget`. * The fully-qualified name of a tapped formula: - Sometimes a formula from a tapped repository may conflict with one in mxcl/master. + Sometimes a formula from a tapped repository may conflict with one in Homebrew/homebrew. You can still access these formulae by using a special syntax, e.g. `homebrew/dupes/vim` or `homebrew/versions/node4`. * An arbitrary URL: Homebrew can install formulae via URL, e.g. - `https://raw.github.com/mxcl/homebrew/master/Library/Formula/git.rb`. + `https://raw.github.com/Homebrew/homebrew/master/Library/Formula/git.rb`. The formula file will be cached for later use. ## ENVIRONMENT @@ -578,7 +578,7 @@ If your proxy requires authentication: ## SEE ALSO -Homebrew Wiki: <http://wiki.github.com/mxcl/homebrew/> +Homebrew Wiki: <http://wiki.github.com/Homebrew/homebrew/> `git`(1), `git-log`(1) @@ -588,5 +588,5 @@ Max Howell, a splendid chap. ## BUGS -See Issues on GitHub: <http://github.com/mxcl/homebrew/issues> +See Issues on GitHub: <http://github.com/Homebrew/homebrew/issues> |
