brew/README.md

317 lines
10 KiB
Markdown
Raw Normal View History

Homebrew
========
Homebrew is a package management system for OS X. In other words it is a tool
that helps you manage the installation of other open source software on your
Mac.
Here's why you may prefer Homebrew to the alternatives:
1. Zero configuration installation
Copy the contents of this directory to /usr/local. Homebrew is now ready
for use.
2. Or… install anywhere!
You can actually stick this directory anywhere. Like ~/.local or /opt or
/lol if you like. You can even move this directory somewhere else later.
Homebrew never changes any files outside of its prefix.
3. The GoboLinux approach
Packages are installed into their own prefix (eg. /usr/local/Cellar/wget)
and then symlinked into the Homebrew prefix (eg. /usr/local).
This way packages can be managed with existing command line tools. You can
uninstall with rm -rf, list with find, query with du. It also means you
can easily install multiple versions of software or libraries and switch
on demand.
Of course you don't have to do anything by hand, we also provide a
convenient and fully-featured four-letter tool called brew.
4. You don't have to sudo
It's up to you. We recommend not--see the relevant later section.
5. Easy package creation
Packages are just Ruby scripts. Generate a template with:
brew create http://foo.com/tarball-0.8.9.tgz
Homebrew will automatically open it for you to tweak with TextMate or
$EDITOR.
Or edit an existing formula:
brew edit foo
6. DIY package installation
MacPorts doesn't support the beta version? Need an older version? Need
custom compile flags? The Homebrew tool-chain is carefully segregated so
you can build stuff by hand but still end up with package management.
Just install to the Cellar and then call brew link to symlink that
installation into your PATH, eg.
./configure --prefix=/usr/local/Cellar/wget/1.10
make install
brew ln wget
Or Homebrew can figure out the prefix:
./configure `brew diy`
cmake . `brew diy`
This means you can also install multiple versions of the same package and
switch on demand.
7. Optimization
We optimize for (Snow) Leopard Intel, binaries are stripped, compile flags
are tuned to your exact Mac model. Slow software sucks.
8. Making the most of OS X
A touch of RubyCocoa, a cheeky sysctl query or two and a smattering of
FSEvent monitoring. In these manic days of cross-platform development,
it's sometimes a welcome relieve to use something that is better because
it isn't too generalized.
2009-07-28 00:31:21 +01:00
9. No duplication
MacPorts is an autarky -- you get a duplicate copy of zlib, OpenSSL,
Python, etc. Homebrew isn't, and as a result everything you install has
less dependencies and builds significantly faster.
Homebrew can integrate with Ruby gems, CPAN and Python EasyInstall. These
tools exist already and do the job great. We don't duplicate packaging
effort, we just improve on it by making these tools install with more
management options.
10. Fork with Git
The formula are all on git, so just fork to add new packages, or add extra
remotes to get packages from more exotic maintainers.
11. Surfing the cutting edge
If the package provides a git://, svn://, cvs:// or hg:// url you can
choose to install that instead and then update as often as you like.
12. Homebrew has a beer theme
Beer goggles will help you to evangelise Homebrew more effectively.
13. Homebrew helps get you chicks
There's no conclusive scientific evidence as yet, but I firmly believe
it's just a matter of time and statistics.
2009-09-12 19:04:15 +01:00
Why you might not want to use Homebrew:
1. It's a little more hands-on than the competition. For example, we don't
set up postgresql for you after installing it, but we do provide
instructions. This isn't apathy, it's by design -- Homebrew doesn't make
assumptions about how you want your software to run. You have to have some
knowledge or be willing to learn to use Homebrew for some tasks.
2. Dependency resolution and updates are basic or not working yet.
2009-07-22 20:27:58 +01:00
I know I've made it sound so awesome you can hardly wait to rip MacPorts out
and embrace the fresh, hoppy taste of Homebrew, but I should point out that it
2009-09-12 19:04:15 +01:00
is really new and still under heavy development. Thanks!
2009-07-22 20:27:58 +01:00
Max Howell -- <http://twitter.com/mxcl>
Installation
============
Homebrew requires no setup, but almost everything it installs is built from
source; so you need Xcode:
2009-06-05 12:56:28 +01:00
<http://developer.apple.com/technology/xcode.html>
2009-06-05 12:56:28 +01:00
Many build scripts assume MacPorts or Fink on OS X. Which isn't too much of a
problem until you uninstall them and stuff you built with Homebrew breaks. So
uninstall them (if you prefer, renaming their root folders is sufficient).
2009-06-05 12:56:28 +01:00
<http://trac.macports.org/wiki/FAQ#uninstall>
<http://www.finkproject.org/faq/usage-fink.php#removing>
Now, download Homebrew:
git clone git://github.com/mxcl/homebrew.git
If this leaves you shaking your head because you are installing Homebrew
*in order to* install git, then try [this installer script][sh] or [this
.pkg installer][pkg]. Note these are somewhat new and are not stamped
"definitely works" yet.
[sh]: http://gist.github.com/203926
[pkg]: http://demaree.me/x/7
Homebrew is self-contained so once you've put it somewhere, it's ready to go.
Copy this directory anywhere you like. But we recommend installing to
/usr/local because:
2009-06-05 12:56:28 +01:00
1. It is already in your path
2. Build scripts always look in /usr/local for dependencies so it makes it
easier for you personally to build and install software
You can move the location of Homebrew at a later time, although this *will*
break some tools because they hardcode their installtion prefixes into their
binaries. Homebrew does make more effort than competing solutions to prevent
this though.
Finally, if you don't install to /usr/local, you have to add the following to
your ~/.profile file:
2009-07-28 00:31:21 +01:00
export PATH=`brew --prefix`/bin:$PATH
export MANPATH=`brew --prefix`/share/man:$MANPATH
Don't sudo
----------
2009-06-28 16:41:28 +01:00
Well clearly you can sudo if you like. Homebrew is all about you doing it your
way. But the Homebrew recommendation is: don't sudo!
On OS X, this requires your user to be in the admin group, but it doesn't
require sudo:
2009-06-28 16:41:28 +01:00
cpan -i MP3::Info
2009-06-28 16:41:28 +01:00
OS X is designed to minimise sudo use, you only need it for real-root-level
stuff. You know your /System and /usr are as clean and pure as the day you
bought your Mac because you didn't sudo. Sleep better at night!
If you are already the kind of guy who installed TextMate by dragging and
dropping it to /Applications, then you won't mind if libflac and pngcrush are
installed under your user privileges too. Lets face it; Homebrew is not
installing anything system-critical. Apple already did that.
2009-06-28 16:41:28 +01:00
Let this be the last sudo you do for quite some time:
2009-06-28 16:41:28 +01:00
sudo chown -R `whoami`:staff `brew --prefix`
I already have a bunch of junk in /usr/local
--------------------------------------------
2009-09-29 20:35:25 +01:00
The easiest thing to do is just git clone into /usr/local. The files that are
there can remain there, Homebrew will never touch them.
cd /usr/local
git init
git remote add origin git://github.com/mxcl/homebrew.git
git pull origin master
Otherwise, delete everything and reinstall with Homebrew. Or merge it in two
steps by hand.
How about mate and gitx and that?
---------------------------------
These tools install from TextMate and GitX into /usr/local/bin. They (and
other similar tools) can co-exist with Homebrew without requiring further
effort from yourself.
2009-06-28 16:41:28 +01:00
Uninstallation
==============
cd `brew --prefix`
rm -rf Cellar
brew prune
rm -rf Library .git
rm bin/brew .gitignore README.md
It is worth noting that if you installed somewhere like /usr/local then these
uninstallation steps will leave that directory exactly like it was before
Homebrew was installed. Unless you manually added new stuff there, in which
case those things will still be there too.
Sample Usage
============
Install wget:
2009-06-04 20:03:53 +01:00
brew install wget
Update package list:
cd /usr/local && git pull
Two ways to delete a package:
brew uninstall wget
rm -rf /usr/local/Cellar/wget && brew prune
Two ways to list all files in a package:
brew list wget
find /usr/local/Cellar/wget
Two ways to search for a package to install:
brew search
ls /usr/local/Library/Formula/
Two ways to see what is already installed:
brew list
ls /usr/local/Cellar/
Two ways to compute installed package sizes:
brew info wget
du /usr/local/Cellar/wget
Show expensive packages:
du -md1 /usr/local/Cellar
A more thorough exploration of the brew command is available at the [Homebrew
wiki][wiki].
RubyGems, Python EasyInstall and CPAN
=====================================
These tools are already designed to make it easy to install Ruby, Python and
Perl stuff. So we resist the temptation to duplicate this packaging effort and
thus avoid accepting such formula into the main tree (although sometimes it is
necessary or prudent).
2009-06-28 16:41:28 +01:00
However it's a nice option to get these other packaging systems to install
into Homebrew and there are work-in-progress instructions for how to do this
on the [wiki][].
2009-06-28 16:41:28 +01:00
Contributing New Formulae
=========================
Formulae are simple Ruby scripts. Generate a formula with most bits filled-in:
2009-06-18 10:32:53 +01:00
brew create http://foo.org/foobar-1.2.1.tar.bz2
2009-06-26 12:59:19 +01:00
Check it over and try to install it:
2009-06-26 12:59:19 +01:00
brew install foobar
2009-06-18 10:32:53 +01:00
Check the [wiki][] for more detailed information and tips for contribution.
If you want your formula to become part of this distribution, fork
<http://github.com/mxcl/homebrew> and send mxcl a pull-request. Alternatively
maintain your own distribution. Maybe you want to support Tiger? Or use
special compile flags? Go ahead that's what git is all about! :)
2009-06-26 12:59:19 +01:00
Licensing
=========
Homebrew is mostly BSD licensed although you should refer to each file to
confirm. Individual formulae are licensed according to their authors' wishes.
FAQ
===
1. Are you excessively interested in beer?
Yes.
2. Was Homebrew devised under the influence of alcohol?
Yes.
3. Can Homebrew replace MacPorts?
Maybe. But remember, Homebrew is still incomplete. Be forgiving in your
approach and be willing to fork and contribute fixes. Thanks!
4. Is there an IRC channel?
Yes, <irc://irc.freenode.net#machomebrew>.
5. And it's on Twitter?
Yes, <http://twitter.com/machomebrew>.
[wiki]: http://wiki.github.com/mxcl/homebrew