-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpet.kate.rustgrab.json
127 lines (127 loc) · 3.26 KB
/
pet.kate.rustgrab.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"app-id":"pet.kate.rustgrab",
"runtime":"org.gnome.Platform",
"runtime-version":"master",
"sdk":"org.gnome.Sdk",
"sdk-extensions":[
"org.freedesktop.Sdk.Extension.rust-stable"
],
"command":"rustgrab-tmpwrap",
"tags": ["nightly"],
"desktop-file-name-prefix": "(Nightly) ",
"build-options":{
"append-path":"/usr/lib/sdk/rust-stable/bin",
"build-args":[
"--share=network"
],
"env":{
"CARGO_HOME":"/run/build/rustgrab/cargo",
"DEBUG":"true"
}
},
"finish-args":[
"--socket=wayland",
"--socket=x11",
"--socket=session-bus",
"--share=network",
"--share=ipc",
"--filesystem=xdg-pictures",
"--filesystem=home",
"--filesystem=xdg-run/dconf",
"--filesystem=~/.config/dconf:ro",
"--talk-name=ca.desrt.dconf",
"--env=DCONF_USER_CONFIG_DIR=.config/dconf"
],
"cleanup":[
"/include",
"/lib/pkgconfig"
],
"modules":[
{
"name":"gnome-screenshot",
"buildsystem":"meson",
"build-options": {
"cflags": "-O2 -g"
},
"sources":[
{
"type": "git",
"url": "https://gitlab.gnome.org/GNOME/gnome-screenshot.git"
}
]
},
{
"name": "imlib2",
"sources":[
{
"type": "git",
"url": "https://git.enlightenment.org/legacy/imlib2.git"
}
]
},
{
"name":"feh",
"buildsystem":"simple",
"sources":[
{
"type": "git",
"url": "https://github.com/derf/feh.git"
}
],
"build-commands":[
"make",
"PREFIX=/app make install"
]
},
{
"name":"toot",
"buildsystem":"simple",
"build-args":[
"--share=network"
],
"build-commands":[
"pip3 install --prefix=/app toot"
]
},
{
"name":"ruby",
"config-opts":[
"--disable-install-doc"
],
"sources":[
{
"type":"archive",
"url":"https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.3.tar.gz",
"sha256":"9828d03852c37c20fa333a0264f2490f07338576734d910ee3fd538c9520846c"
}
]
},
{
"name":"t",
"buildsystem":"simple",
"build-args":[
"--share=network"
],
"build-commands":[
"gem install --bindir=/app/bin t"
]
},
{
"name":"rustgrab",
"subdir":"rust",
"buildsystem":"simple",
"build-args":[
"--share=network"
],
"build-commands":[
"PREFIX=/app make install-tmpwrap"
],
"sources":[
{
"type":"git",
"url":"https://github.com/ktwrd/rustgrab"
}
]
}
]
}