aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Holm2015-04-07 09:13:08 +0200
committerMike McQuaid2015-04-07 10:28:40 +0100
commit69006c582e086b84c15c21ccd5ed783f95b056cb (patch)
tree646d0df3bb35dc956ea160c5e702d82d50405e73 /Library/Formula
parentcf9ac58c59290ce72da996cd2d36ecbfdc1d75d2 (diff)
downloadhomebrew-69006c582e086b84c15c21ccd5ed783f95b056cb.tar.bz2
uwsgi: Add optional mono plugin
Closes #38426. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/uwsgi.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/uwsgi.rb b/Library/Formula/uwsgi.rb
index ef554b005..66f5b453b 100644
--- a/Library/Formula/uwsgi.rb
+++ b/Library/Formula/uwsgi.rb
@@ -32,6 +32,7 @@ class Uwsgi < Formula
depends_on "lua51" => :optional
depends_on "mongodb" => :optional
depends_on "mongrel2" => :optional
+ depends_on "mono" => :optional
depends_on "nagios" => :optional
depends_on "postgresql" => :optional
depends_on "pypy" => :optional
@@ -95,6 +96,7 @@ class Uwsgi < Formula
plugins << "mongodb" if build.with? "mongodb"
plugins << "mongodblog" if build.with? "mongodb"
plugins << "mongrel2" if build.with? "mongrel2"
+ plugins << "mono" if build.with? "mono"
plugins << "nagios" if build.with? "nagios"
plugins << "pypy" if build.with? "pypy"
plugins << "php" if build.with? "php"