diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/emacs.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Library/Formula/emacs.rb b/Library/Formula/emacs.rb index b082cc4a1..9470152c7 100644 --- a/Library/Formula/emacs.rb +++ b/Library/Formula/emacs.rb @@ -5,12 +5,13 @@ require 'formula' class Emacs <Formula url 'http://ftp.gnu.org/pub/gnu/emacs/emacs-23.2.tar.bz2' md5 '057a0379f2f6b85fb114d8c723c79ce2' + homepage 'http://www.gnu.org/software/emacs/' + if ARGV.include? "--use-git-head" head 'git://repo.or.cz/emacs.git' else head 'bzr://http://bzr.savannah.gnu.org/r/emacs/trunk' end - homepage 'http://www.gnu.org/software/emacs/' def options [ @@ -20,6 +21,10 @@ class Emacs <Formula ] end + def patches + "http://github.com/downloads/typester/emacs/feature-fullscreen.patch" if ARGV.include? "--cocoa" + end + def caveats s = "" if ARGV.include? "--cocoa" |
