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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
require "formula"
# speed up head clone, see: https://developer.mozilla.org/en-US/docs/Developer_Guide/Source_Code/Mercurial/Bundles
class HgBundleDownloadStrategy < CurlDownloadStrategy
def hgpath
MercurialDownloadStrategy.new(@name, @resource).hgpath
end
def fetch
@repo = @url.split("|").last
@url = @url.split("|").first
super()
end
def stage
safe_system "mkdir mozilla-central"
safe_system hgpath, "init", "mozilla-central"
chdir
safe_system hgpath, "unbundle", @tarball_path
safe_system hgpath, "pull", @repo
safe_system hgpath, "update"
end
end
class Python273Requirement < Requirement
fatal true
default_formula "python"
satisfy do
`python -V 2>&1` =~ /^Python 2.7.(\d+)/
$1.to_i >= 3
end
end
class Xulrunner < Formula
homepage "https://developer.mozilla.org/docs/XULRunner"
stable do
url "https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/latest/source/xulrunner-33.0.source.tar.bz2"
sha1 "0fbd6ac263d9c5811a5338252b28e3d08ddfbeb2"
# https://github.com/Homebrew/homebrew/issues/33558
depends_on MaximumMacOSRequirement => :mavericks
end
bottle do
cellar :any
sha1 "222b1eaabea7a2aaa4712682c9580ed70f78ceb8" => :mavericks
sha1 "3eb54b046978536c2161a3961e0e50a624223a0d" => :mountain_lion
end
head do
url "https://ftp.mozilla.org/pub/mozilla.org/firefox/bundles/mozilla-central.hg|https://hg.mozilla.org/mozilla-central/",
:using => HgBundleDownloadStrategy
depends_on :hg => :build
depends_on "gettext" => :build
end
depends_on :macos => :lion # needs clang++
depends_on :xcode => :build
depends_on :python => :build
depends_on Python273Requirement => :build
depends_on "gnu-tar" => :build
depends_on "pkg-config" => :build
depends_on "yasm"
depends_on "nss"
depends_on "nspr"
fails_with :gcc do
cause "Mozilla XULRunner only supports Clang on OS X"
end
fails_with :llvm do
cause "Mozilla XULRunner only supports Clang on OS X"
end
resource "autoconf213" do
url "http://ftpmirror.gnu.org/autoconf/autoconf-2.13.tar.gz"
mirror "https://ftp.gnu.org/gnu/autoconf/autoconf-2.13.tar.gz"
sha1 "e4826c8bd85325067818f19b2b2ad2b625da66fc"
end
def install
if build.head?
resource("autoconf213").stage do
system "./configure", "--disable-debug", "--program-suffix=213", "--prefix=#{buildpath}/ac213"
system "make", "install"
end
ENV["AUTOCONF"] = buildpath/"ac213/bin/autoconf213"
end
# build xulrunner to objdir and disable tests, updater.app and crashreporter.app, specify sdk path
(buildpath/"mozconfig").write <<-EOS.undent
. $topsrcdir/xulrunner/config/mozconfig
mk_add_options MOZ_OBJDIR=objdir
ac_add_options --disable-tests
ac_add_options --disable-updater
ac_add_options --disable-crashreporter
ac_add_options --with-macos-sdk=#{MacOS.sdk_path}
ac_add_options --with-nss-prefix=#{Formula["nss"].opt_prefix}
ac_add_options --with-nspr-prefix=#{Formula["nspr"].opt_prefix}
EOS
# fixed usage of bsdtar with unsupported parameters (replaced with gnu-tar)
inreplace "toolkit/mozapps/installer/packager.mk", "$(TAR) -c --owner=0 --group=0 --numeric-owner",
"#{Formula["gnu-tar"].opt_bin}/gtar -c --owner=0 --group=0 --numeric-owner"
system "make", "-f", "client.mk", "build"
system "make", "-f", "client.mk", "package"
frameworks.mkpath
if build.head?
# update HEAD version here with every version bump
tar_path = "objdir/dist/xulrunner-33.0a1.en-US.mac64.tar.bz2"
else
tar_path = "objdir/dist/xulrunner-#{version.to_s[/\d+\.\d+(\.\d+)?/]}.en-US.mac64.tar.bz2"
end
system "tar", "-xvj", "-C", frameworks, "-f", tar_path
# symlink only xulrunner here will fail (assumes dylibs in same directory)
bin.write_exec_script frameworks/"XUL.framework/Versions/Current/xulrunner"
# fix Trace/BPT trap: 5 error on OS X 10.9, see laurentj/slimerjs#135
# and https://bugzilla.mozilla.org/show_bug.cgi?id=922590#c4
if MacOS.version >= :mavericks
(frameworks/"XUL.framework/Versions/Current/Info.plist").write <<-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">
<dict>
<key>CFBundleIdentifier</key>
<string>org.mozilla.xulrunner</string>
</dict>
</plist>
EOS
end
end
test do
system "#{bin}/xulrunner", "-v"
end
end
|