aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-09-08 12:18:52 -0700
committerAdam Vandenberg2012-09-09 13:02:48 -0700
commit22685cb89d24d190960dce9d80932d8d6836fc29 (patch)
treef7829b6abc4a51ca748417cdfe674f16a095ae08 /Library/Homebrew/formula.rb
parentf4d967e96e3dcc2c035b9b678b3f67bb10e83d03 (diff)
downloadbrew-22685cb89d24d190960dce9d80932d8d6836fc29.tar.bz2
Install plists by default
Diffstat (limited to 'Library/Homebrew/formula.rb')
-rw-r--r--Library/Homebrew/formula.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 7ce9bcc15..2fbfbe201 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -140,6 +140,8 @@ class Formula
# generally we don't want var stuff inside the keg
def var; HOMEBREW_PREFIX+'var' end
+ # override this to provide a plist
+ def startup_plist; nil; end
# plist name, i.e. the name of the launchd service
def plist_name; 'homebrew.mxcl.'+name end
def plist_path; prefix+(plist_name+'.plist') end