forked from denji/homebrew-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenresty.rb
61 lines (53 loc) · 1.55 KB
/
openresty.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
require 'formula'
class Openresty < Formula
homepage 'http://openresty.org'
url 'http://openresty.org/download/ngx_openresty-1.4.2.7.tar.gz'
sha1 '5c41060e21198597c3776895c82b9333235db6c4'
version '1.4.2.7'
depends_on "luajit"
depends_on "pcre"
def install
# Configure
cc_opt = "-I#{HOMEBREW_PREFIX}/include"
ld_opt = "-L#{HOMEBREW_PREFIX}/lib"
args = [
"--prefix=#{prefix}",
"--pid-path=#{var}/run/openresty.pid",
"--lock-path=#{var}/run/openresty.lock",
"--sbin-path=#{bin}/openresty",
"--conf-path=#{etc}/openresty/nginx.conf",
"--http-log-path=#{var}/log/nginx/access.log",
"--error-log-path=#{var}/log/nginx/error.log",
"--with-luajit",
"--with-cc-opt=#{cc_opt}",
"--with-ld-opt=#{ld_opt}"
]
system "./configure", *args
# Install
system 'make'
system 'make install'
end
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<false/>
<key>ProgramArguments</key>
<array>
<string>#{opt_prefix}/bin/openresty</string>
<string>-g</string>
<string>daemon off;</string>
</array>
<key>WorkingDirectory</key>
<string>#{HOMEBREW_PREFIX}</string>
</dict>
</plist>
EOS
end
end