diff options
| author | Larry Gilbert | 2015-06-07 11:49:41 -0700 |
|---|---|---|
| committer | Dominyk Tiller | 2015-06-10 17:44:00 +0100 |
| commit | 69b629b041ccc285ee53def870f2da7e8882536b (patch) | |
| tree | 4bc792ab9834b218d70c5652f5e5775a58cbe35a /share | |
| parent | a631ae19836bbe130983bf7070bbb5858a8a44c6 (diff) | |
| download | brew-69b629b041ccc285ee53def870f2da7e8882536b.tar.bz2 | |
Various edits for punctuation, grammar, spelling, etc.
Closes Homebrew/homebrew#40478.
Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
Diffstat (limited to 'share')
| -rw-r--r-- | share/doc/homebrew/Acceptable-Formulae.md | 2 | ||||
| -rw-r--r-- | share/doc/homebrew/FAQ.md | 12 | ||||
| -rw-r--r-- | share/doc/homebrew/Formula-Cookbook.md | 8 | ||||
| -rw-r--r-- | share/man/man1/brew.1 | 6 |
4 files changed, 14 insertions, 14 deletions
diff --git a/share/doc/homebrew/Acceptable-Formulae.md b/share/doc/homebrew/Acceptable-Formulae.md index f76ccbd72..4b02b2a78 100644 --- a/share/doc/homebrew/Acceptable-Formulae.md +++ b/share/doc/homebrew/Acceptable-Formulae.md @@ -101,7 +101,7 @@ Please trust that we need to use our discretion based on our experience running a package manager. ### Stuff that builds a .app -Don’t make your formula build an `.app` (native OS X Application), we +Don’t make your formula build an `.app` (native OS X Application); we don’t want those things in Homebrew. Make it build a command line tool or a library. However, we have a few exceptions to that, e.g. when the App is just additional to CLI or if the GUI-application is non-native diff --git a/share/doc/homebrew/FAQ.md b/share/doc/homebrew/FAQ.md index ab793c6d5..4d0b95088 100644 --- a/share/doc/homebrew/FAQ.md +++ b/share/doc/homebrew/FAQ.md @@ -185,12 +185,12 @@ Yes! It’s easy! Just `brew edit $FORMULA`. You don’t have to submit modifica ### Can I make new formulae? Yes! It’s easy! Just `brew create URL` Homebrew will then open the formula in `$EDITOR` so you can edit it, but it probably already -installs, try it: `brew install $FORMULA`. If you come up any issues, -run the command with the `-d` switch like so: `brew install -d $FORMULA` +installs; try it: `brew install $FORMULA`. If you come up with any issues, +run the command with the `-d` switch like so: `brew install -d $FORMULA`, which drops you into a debugging shell. If you want your new formula to be part of *Homebrew/homebrew* or want -to learn more about writing formula then please read the [Formula Cookbook](Formula-Cookbook.md). +to learn more about writing formulae, then please read the [Formula Cookbook](Formula-Cookbook.md). ### Can I install my own stuff to `/usr/local`? Yes, brew is designed to not get in your way so you can use it how you @@ -218,7 +218,7 @@ Linking /usr/local/Cellar/foo/0.1… 17 symlinks created ### Where was a formula deleted? Use `brew log $FORMULA` to find out! -Sometimes formula are moved to specialized repositories. These are the +Sometimes formulae are moved to specialized repositories. These are the likely candidates: * [https://github.com/Homebrew/homebrew-dupes](https://github.com/Homebrew/homebrew-dupes) @@ -241,9 +241,9 @@ late. However, today, the first google hit for “homebrew” is not beer related ;-) ### What does *keg-only* mean? -It means the formula is installed only into the Cellar, it is not linked +It means the formula is installed only into the Cellar; it is not linked into `/usr/local`. This means most tools will not find it. We don’t do -this for stupid reasons. You can link the formula in still if you need +this for stupid reasons. You can still link in the formula if you need to with `brew link`. ### How can I specify different configure arguments for a formula? diff --git a/share/doc/homebrew/Formula-Cookbook.md b/share/doc/homebrew/Formula-Cookbook.md index 4ea440095..87518a503 100644 --- a/share/doc/homebrew/Formula-Cookbook.md +++ b/share/doc/homebrew/Formula-Cookbook.md @@ -148,7 +148,7 @@ We try to not duplicate libraries and complicated tools in core Homebrew. We dup The one special exception is OpenSSL. Anything that uses OpenSSL *should* be built using Homebrew’s shipped OpenSSL and our test bot's post-install audit will warn of this when it is detected. (*Of course, there are exceptions to the exception. Not everything can be forced onto our OpenSSL)*. -Because Homebrew’s OpenSSL is `keg_only` to avoid conflicting with the system sometimes formulae need to have environmental variables set or special configuration flags passed to locate our preferred OpenSSL; you can see this mechanism in the [clamav](https://github.com/Homebrew/homebrew/blob/master/Library/Formula/clamav.rb#L28) formula. Usually this is unnecessary because when OpenSSL is specified as a dependency Homebrew temporarily prepends the $PATH with that prefix. +Because Homebrew’s OpenSSL is `keg_only` to avoid conflicting with the system, sometimes formulae need to have environmental variables set or special configuration flags passed to locate our preferred OpenSSL; you can see this mechanism in the [clamav](https://github.com/Homebrew/homebrew/blob/master/Library/Formula/clamav.rb#L28) formula. Usually this is unnecessary because when OpenSSL is specified as a dependency Homebrew temporarily prepends the $PATH with that prefix. Homebrew maintains a special [tap that provides other useful dupes](https://github.com/Homebrew/homebrew-dupes). @@ -228,7 +228,7 @@ Where a dependent of a formula fails against a new version of that dependency it ## Double-check for dependencies -When you already have a lot of brews installed, its easy to miss a common dependency like `glib` or `gettext`. +When you already have a lot of brews installed, it's easy to miss a common dependency like `glib` or `gettext`. You can double-check which libraries a binary links to with the `otool` command (perhaps you need to use `xcrun otool`): @@ -265,7 +265,7 @@ class Foo < Formula end ``` -[jrnl](https://github.com/Homebrew/homebrew/blob/master/Library/Formula/jrnl.rb) is an example of a formula that does this well. The end-result means the user doesn't have to faff with `pip` or Python and can just run `jrnl`. +[jrnl](https://github.com/Homebrew/homebrew/blob/master/Library/Formula/jrnl.rb) is an example of a formula that does this well. The end result means the user doesn't have to faff with `pip` or Python and can just run `jrnl`. [homebrew-pypi-poet](https://github.com/tdsmith/homebrew-pypi-poet) can help you generate resource stanzas for the dependencies of your Python application. @@ -364,7 +364,7 @@ The established standard for Git commit messages is: * two (2) newlines, then * explain the commit throughly -At Homebrew, we like to put the name of the formula upfront like so "foobar 7.3 (new formula)". +At Homebrew, we like to put the name of the formula up front like so: "foobar 7.3 (new formula)". This may seem crazy short, but you’ll find that forcing yourself to summarise the commit encourages you to be atomic and concise. If you can’t summarise it in 50-80 characters, you’re probably trying to commit two commits as one. For a more thorough explanation, please read Tim Pope’s excellent blog post, [A Note About Git Commit Messages](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html). The preferred commit message format for simple version updates is "foobar 7.3". diff --git a/share/man/man1/brew.1 b/share/man/man1/brew.1 index bcd995d2a..7816904ab 100644 --- a/share/man/man1/brew.1 +++ b/share/man/man1/brew.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "BREW" "1" "May 2015" "Homebrew" "brew" +.TH "BREW" "1" "June 2015" "Homebrew" "brew" . .SH "NAME" \fBbrew\fR \- The missing package manager for OS X @@ -155,7 +155,7 @@ Download the source packages for the given \fIformulae\fR\. For tarballs, also p If \fB\-\-HEAD\fR or \fB\-\-devel\fR is passed, fetch that version instead of the stable version\. . .IP -If \fB\-v\fR is passed, do a verbose VCS checkout, if the url represents a CVS\. This is useful for seeing if an existing VCS cache has been updated\. +If \fB\-v\fR is passed, do a verbose VCS checkout, if the URL represents a CVS\. This is useful for seeing if an existing VCS cache has been updated\. . .IP If \fB\-\-force\fR is passed, remove a previously cached version and re\-fetch\. @@ -255,7 +255,7 @@ Show installed formulae that are not dependencies of another installed formula\. . .TP \fBln\fR, \fBlink [\-\-overwrite] [\-\-dry\-run] [\-\-force]\fR \fIformula\fR -Symlink all of \fIformula\fR\'s installed files into the Homebrew prefix\. This is done automatically when you install formula, but can be useful for DIY installations\. +Symlink all of \fIformula\fR\'s installed files into the Homebrew prefix\. This is done automatically when you install formulae but can be useful for DIY installations\. . .IP If \fB\-\-overwrite\fR is passed, Homebrew will delete files which already exist in the prefix while linking\. |
