-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathio.github.Hexchat.json
78 lines (78 loc) · 2.49 KB
/
io.github.Hexchat.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
{
"app-id": "io.github.Hexchat",
"runtime": "org.gnome.Platform",
"runtime-version": "3.20",
"sdk": "org.gnome.Sdk",
"command": "hexchat",
"tags": ["stable"],
"desktop-file-name-prefix": "(Stable) ",
"rename-desktop-file": "hexchat.desktop",
"rename-appdata-file": "hexchat.appdata.xml",
"rename-icon": "hexchat",
"finish-args": [
/* X11 + XShm access */
"--share=ipc", "--socket=x11",
/* Needs to talk to the network: */
"--share=network",
/* Needed for dconf to work */
"--filesystem=xdg-run/dconf", "--filesystem=~/.config/dconf:ro",
"--talk-name=ca.desrt.dconf", "--env=DCONF_USER_CONFIG_DIR=.config/dconf"
],
"build-options" : {
"cflags": "-O2 -g",
"cxxflags": "-O2 -g"
},
"cleanup": ["/include", "/lib/pkgconfig",
"/share/pkgconfig", "/share/aclocal",
"/man", "/share/man", "/share/gtk-doc",
"*.la", "*.a",
"/lib/girepository-1.0",
"/share/dbus-1", "/share/doc", "/share/gir-1.0"
],
"modules": [
{
"name": "lua",
"sources": [
{
"type": "archive",
"url": "http://www.lua.org/ftp/lua-5.3.2.tar.gz",
"sha256": "c740c7bb23a936944e1cc63b7c3c5351a8976d7867c5252c8854f7b2af9da68f"
},
{
"type": "shell",
"commands": [ "mv src/luaconf.h src/luaconf.h.template.in" ]
},
/* Patches from the Fedora package */
{
"type": "patch",
"path": "lua-5.3.0-autotoolize.patch"
},
{
"type": "patch",
"path": "lua-5.3.0-idsize.patch"
},
{
"type": "shell",
"commands": [ "autoreconf -i" ]
}
],
"cleanup": [ "/bin" ]
},
{
"name": "hexchat",
"config-opts": [
"--disable-perl",
"--disable-perl_old",
"--disable-stack-protector",
"--enable-python=python3"
],
"make-args": [ "V=1" ],
"sources": [
{
"type": "git",
"url": "https://github.com/hexchat/hexchat.git"
}
]
}
]
}