-
Notifications
You must be signed in to change notification settings - Fork 75
/
com.github.fabiocolacio.marker.json
80 lines (80 loc) · 2.53 KB
/
com.github.fabiocolacio.marker.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
{
"app-id": "com.github.fabiocolacio.marker",
"runtime": "org.gnome.Platform",
"runtime-version": "3.30",
"sdk": "org.gnome.Sdk",
"command": "marker",
"finish-args": [
/* X11 + XShm access */
"--share=ipc", "--socket=x11",
/* Filesystem Access */
"--filesystem=home",
/* Wayland access */
"--socket=wayland",
/* dconf */
"--filesystem=xdg-run/dconf", "--filesystem=~/.config/dconf:ro",
"--talk-name=ca.desrt.dconf", "--env=DCONF_USER_CONFIG_DIR=.config/dconf"
],
"cleanup": ["/include", "/lib/pkgconfig",
"/share/pkgconfig", "/share/aclocal",
"/man", "/share/man", "/share/gtk-doc",
"/share/vala",
"*.la", "*.a"],
"modules": [
{
"name": "enchant",
"config-opts": ["--disable-static", "--with-myspell-dir=/usr/share/hunspell"],
"sources": [
{
"type": "archive",
"url": "https://www.abisource.com/downloads/enchant/1.6.0/enchant-1.6.0.tar.gz",
"sha256": "2fac9e7be7e9424b2c5570d8affe568db39f7572c10ed48d4e13cddf03f7097f"
},
{
"type": "shell",
"commands": [
"cp -f /usr/share/automake-1.16/config.sub .",
"cp -f /usr/share/automake-1.16/config.guess ."
]
}
]
},
{
"name": "gtksourceview",
"config-opts": ["--disable-Werror" ],
"sources": [
{
"type": "archive",
"url": "https://download.gnome.org/sources/gtksourceview/3.24/gtksourceview-3.24.9.tar.xz",
"sha256": "699d76a453e6a3d3331906346e3dbfa25f2cbc9ec090e46635e9c6bb595e07c2"
}
]
},
{
"name": "gtkspell",
"sources": [
{
"type": "archive",
"url": "https://downloads.sourceforge.net/sourceforge/gtkspell/gtkspell3-3.0.9.tar.xz",
"sha256": "a4f4a4a2789f7499563e26d96b22d8085222ebe278da47d026b2de782b8b4d26"
}
]
},
{
"name": "Marker",
"buildsystem": "meson",
"post-install": [
"for size in 64 128; do
rsvg-convert -w $size -h $size -f png -o $size.png /app/share/icons/hicolor/scalable/apps/com.github.fabiocolacio.marker.svg
install -Dm644 $size.png /app/share/icons/hicolor/${size}x${size}/apps/com.github.fabiocolacio.marker.png
done"
],
"sources": [
{
"type": "git",
"url": "https://github.com/fabiocolacio/Marker.git"
}
]
}
]
}