-
Notifications
You must be signed in to change notification settings - Fork 35
/
org.mozilla.Firefox.json
103 lines (103 loc) · 2.95 KB
/
org.mozilla.Firefox.json
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
{
"app-id": "org.mozilla.Firefox",
"runtime": "org.gnome.Platform",
"runtime-version": "3.22",
"sdk": "org.gnome.Sdk",
"command": "firefox",
"tags": ["nightly"],
"rename-desktop-file": "firefox.desktop",
"desktop-file-name-prefix": "(Nightly) ",
"finish-args": [
/* X11 + XShm access */
"--share=ipc", "--socket=x11",
/* Wayland access */
"--socket=wayland",
/* We want full fs access so we can read the files */
"--filesystem=home:rw",
/* Needs to talk to the network: */
"--share=network"
],
"build-options" : {
"cflags": "-O2 -g",
"cxxflags": "-O2 -g",
"env": {
"V": "1"
}
},
"cleanup": ["/include", "/lib/pkgconfig",
"/share/pkgconfig", "/share/aclocal",
"/man", "/share/man", "/share/gtk-doc",
"*.la", "*.a"],
"modules": [
{
"name": "autoconf-2.13",
"config-opts": ["--program-suffix=2.13"],
"sources": [
{
"type": "archive",
"url": "http://ftp.gnu.org/gnu/autoconf/autoconf-2.13.tar.gz",
"sha256": "f0611136bee505811e9ca11ca7ac188ef5323a8e2ef19cffd3edb3cf08fd791e"
}
]
},
{
"name": "gconf",
"config-opts": ["--disable-orbit",
"--disable-gtk",
"--disable-documentation"],
"sources": [
{
"type": "git",
"url": "git://git.gnome.org/gconf"
}
]
},
{
"name": "yasm",
"config-opts": [],
"sources": [
{
"type": "archive",
"url": "http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz",
"sha256": "3dce6601b495f5b3d45b59f7d2492a340ee7e84b5beca17e48f862502bd5603f"
}
]
},
{
"name": "icu",
"config-opts": [],
"subdir": "source",
"no-autogen": true,
"sources": [
{
"type": "archive",
"url": "http://download.icu-project.org/files/icu4c/58.2/icu4c-58_2-src.tgz",
"sha256": "2b0a4410153a9b20de0e20c7d8b66049a72aef244b53683d0d7521371683da0c"
}
]
},
{
"name": "firefox",
"no-autogen": true,
"make-install-args": ["prefix=/app"],
"sources": [
{
"type": "git",
"url": "https://github.com/mozilla/gecko-dev"
},
{
"type": "patch",
"path": "firefox-buildconfig.patch"
},
{
"type": "patch",
"path": "firefox-makeinstall.patch"
},
{
"type": "patch",
"path": "firefox-desktop.patch"
}
]
}
]
}