-
Notifications
You must be signed in to change notification settings - Fork 16
/
deb.json
56 lines (56 loc) · 1.2 KB
/
deb.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
{
"name": "hello",
"maintainer": "mh-cbon <[email protected]>",
"files": [
{
"from": "build/!arch!/!name!",
"to": "/usr/bin",
"base": "build/!arch!",
"fperm": "0755"
},
{
"from": "assets/**/**",
"to": "/usr/share/hello/"
},
{
"from": "assets/**/**",
"to": "/usr/share/hello/other",
"base": "assets"
}
],
"copyrights": [
{
"files": "*",
"copyright": "2016 mh-cbon <[email protected]>",
"license": "MIT",
"file": "LICENSE"
}
],
"envs": {
"some": "value"
},
"depends": [
"adduser",
"libc6"
],
"description": "hello web server",
"systemd-file": "deb/hello.service",
"preinst-file": "deb/preinst.sh",
"postinst-file": "deb/postinst.sh",
"prerm-file": "deb/prerm.sh",
"postrm-file": "deb/postrm.sh",
"changelog-file": "changelog",
"menus": [
{
"name":"hello",
"description":"Open web browser to an hello page",
"generic-name":"hello",
"exec":"xdg-open http://localhost:8080/",
"icon":"ico.png",
"type":"Application",
"keywords":"hello",
"startup-notify": false,
"categories":"Applications/see-menu-manual"
}
]
}