forked from zotero/zotero-standalone-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fetch_xulrunner.sh
executable file
·107 lines (94 loc) · 3.7 KB
/
fetch_xulrunner.sh
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
#!/bin/bash
# Copyright (c) 2011 Zotero
# Center for History and New Media
# George Mason University, Fairfax, Virginia, USA
# http://zotero.org
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
PROTOCOL="https"
CALLDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
. "$CALLDIR/config.sh"
SITE="$PROTOCOL://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$GECKO_VERSION/runtimes/"
while getopts "p:" opt; do
case $opt in
p)
BUILD_MAC=0
BUILD_WIN32=0
BUILD_LINUX=0
for i in `seq 0 1 $((${#OPTARG}-1))`
do
case ${OPTARG:i:1} in
m) BUILD_MAC=1;;
w) BUILD_WIN32=1;;
l) BUILD_LINUX=1;;
*)
echo "$0: Invalid platform option ${OPTARG:i:1}"
usage
;;
esac
done
;;
esac
shift $((OPTIND-1)); OPTIND=1
done
rm -rf xulrunner
mkdir xulrunner
cd xulrunner
if [ $BUILD_MAC == 1 ]; then
# Extract XUL bundle from Firefox
echo curl -O "$PROTOCOL://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$GECKO_VERSION/mac/en-US/Firefox%20$GECKO_VERSION.dmg"
curl -O "$PROTOCOL://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$GECKO_VERSION/mac/en-US/Firefox%20$GECKO_VERSION.dmg"
hdiutil detach -quiet /Volumes/Zotero 2>/dev/null
hdiutil attach -quiet "Firefox%20$GECKO_VERSION.dmg"
cp -a /Volumes/Firefox/Firefox.app .
hdiutil detach -quiet /Volumes/Zotero
rm "Firefox%20$GECKO_VERSION.dmg"
fi
if [ $BUILD_WIN32 == 1 ]; then
curl -O $SITE/xulrunner-$GECKO_VERSION.en-US.win32.zip
unzip -q xulrunner-$GECKO_VERSION.en-US.win32.zip
rm xulrunner-$GECKO_VERSION.en-US.win32.zip
mv xulrunner xulrunner_win32
# Extract XUL bundle from Firefox
curl -O "$PROTOCOL://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$GECKO_VERSION/win32/en-US/Firefox%20Setup%20$GECKO_VERSION.exe"
if which 7z >/dev/null 2>&1; then
Z7=7z
elif [ -x "$EXE7ZIP" ]; then
Z7="`cygpath -u "$EXE7ZIP"`"
fi
cd xulrunner_win32
rm *.dll *.chk
"$Z7" e "../Firefox%20Setup%20$GECKO_VERSION.exe" core/*.dll core/*.chk
cd ..
rm "Firefox%20Setup%20$GECKO_VERSION.exe"
fi
if [ $BUILD_LINUX == 1 ]; then
curl -O $SITE/xulrunner-$GECKO_VERSION.en-US.linux-i686.tar.bz2 \
-O $SITE/xulrunner-$GECKO_VERSION.en-US.linux-x86_64.tar.bz2
tar -xjf xulrunner-$GECKO_VERSION.en-US.linux-i686.tar.bz2
rm xulrunner-$GECKO_VERSION.en-US.linux-i686.tar.bz2
mv xulrunner xulrunner_linux-i686
tar -xjf xulrunner-$GECKO_VERSION.en-US.linux-x86_64.tar.bz2
rm xulrunner-$GECKO_VERSION.en-US.linux-x86_64.tar.bz2
mv xulrunner xulrunner_linux-x86_64
# Extract XUL bundle from Firefox
# curl -O "https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$GECKO_VERSION/linux-i686/en-US/firefox-$GECKO_VERSION.tar.bz2"
# tar -xjf firefox-$GECKO_VERSION.tar.bz2 firefox/libxul.so
# mv firefox/libxul.so xulrunner_linux-i686/libxul.so
# #rm -rf firefox "firefox-$GECKO_VERSION.tar.bz2"
# curl -O "https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$GECKO_VERSION/linux-x86_64/en-US/firefox-$GECKO_VERSION.tar.bz2"
# tar -xjf firefox-$GECKO_VERSION.tar.bz2 firefox/libxul.so
# mv firefox/libxul.so xulrunner_linux-x86_64/libxul.so
# #rm -rf firefox "firefox-$GECKO_VERSION.tar.bz2"
fi