aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/nginx.rb
diff options
context:
space:
mode:
authorMisty De Meo2012-01-22 22:32:15 -0600
committerMisty De Meo2012-01-25 21:45:19 -0600
commitaedacdf209815450204602ff403bb5c4510d6a3a (patch)
tree27ecb795418341d3ea2e435c3eb415c7bfc37f91 /Library/Formula/nginx.rb
parent84a2e44db41ee4c45ad8735b96d9bb7a655efde3 (diff)
downloadhomebrew-aedacdf209815450204602ff403bb5c4510d6a3a.tar.bz2
Add `devel` to the DSL, + stable and bottle blocks
This commit adds a `devel` entry to the DSL, allowing formulae to specify an unstable branch. `devel` takes a block, which should contain standard `url` and `md5` fields (and `version`, if necessary). This must come after the standard DSL fields. This commit also migrates over all formulae currently using `devel` to the new syntax, as well as formulae which used `head` for non-VCS urls. The new syntax is also available for `stable` and `bottle`. `stable` is an option alongside the old syntax. `bottle` replaces the old syntax. Note that the @stable ivar in Formula has been renamed to @standard, and the @bottle ivar has been renamed to @bottle_url. Closes #9735. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library/Formula/nginx.rb')
-rw-r--r--Library/Formula/nginx.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/nginx.rb b/Library/Formula/nginx.rb
index defaf7486..796dd19fe 100644
--- a/Library/Formula/nginx.rb
+++ b/Library/Formula/nginx.rb
@@ -3,12 +3,11 @@ require 'formula'
class Nginx < Formula
homepage 'http://nginx.org/'
url 'http://nginx.org/download/nginx-1.0.11.tar.gz'
- head 'http://nginx.org/download/nginx-1.1.13.tar.gz'
+ md5 'a41a01d7cd46e13ea926d7c9ca283a95'
- if ARGV.build_head?
+ devel do
+ url 'http://nginx.org/download/nginx-1.1.13.tar.gz'
md5 '3a457fc31da382ed0546bfb76fc70c13'
- else
- md5 'a41a01d7cd46e13ea926d7c9ca283a95'
end
depends_on 'pcre'