diff options
| author | Adam Vandenberg | 2013-09-30 22:49:52 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-09-30 22:49:52 -0700 |
| commit | 6013aa12ae5b95466b9464aadbf338b63524eb0c (patch) | |
| tree | 2ad90861e549907febd0583070387de9ae197f4d /Library/Formula | |
| parent | 9e70236715d116026d4631c5bab6528953f5be1d (diff) | |
| download | homebrew-6013aa12ae5b95466b9464aadbf338b63524eb0c.tar.bz2 | |
emacs: keep info documentation
Closes #22924.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/emacs.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/emacs.rb b/Library/Formula/emacs.rb index 0fc37a01c..18d0e442e 100644 --- a/Library/Formula/emacs.rb +++ b/Library/Formula/emacs.rb @@ -6,6 +6,8 @@ class Emacs < Formula mirror 'http://ftp.gnu.org/pub/gnu/emacs/emacs-24.3.tar.gz' sha256 '0098ca3204813d69cd8412045ba33e8701fa2062f4bff56bedafc064979eef41' + skip_clean 'share/info' # Keep the docs + option "cocoa", "Build a Cocoa version of emacs" option "srgb", "Enable sRGB colors in the Cocoa version of emacs" option "with-x", "Include X11 support" @@ -22,6 +24,7 @@ class Emacs < Formula depends_on :autoconf depends_on :automake end + depends_on 'pkg-config' => :build depends_on :x11 if build.include? "with-x" depends_on 'gnutls' => :optional @@ -41,8 +44,7 @@ class Emacs < Formula end def install - # HEAD builds are currently blowing up when built in parallel - # as of April 20 2012 + # HEAD builds blow up when built in parallel as of April 20 2012 ENV.j1 if build.head? args = ["--prefix=#{prefix}", |
