-
Notifications
You must be signed in to change notification settings - Fork 16
/
deb-example.json
96 lines (96 loc) · 2 KB
/
deb-example.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
{
"name": "go-deb-bin",
"version": "0.0.1",
"maintainer": "mh-cbon <some@email.com>",
"changed-by": "mh-cbon <some@email.com>",
"section": "unknown",
"priority": "extra",
"arch": "all",
"homepage": "http://github.com/mh-cbon/go-deb-bin",
"vcs": [
{
"type": "vcs-browser",
"url": "http://github.com/mh-cbon/go-deb-bin"
},
{
"type": "vcs-git",
"url": "http://github.com/mh-cbon/go-deb-bin.git -b master"
}
],
"files": [
{
"from": "path/src",
"to": "/usr/bin",
"base": "path/"
}
],
"copyrights": [
{
"files": "*",
"copyright": "1998 Johan Hanson <johan@tiq.com>",
"license": "GPL-2+"
}
],
"essential": false,
"depends": [
"libc6 (>= 2.2.1)",
"exim | mail-transport-agent"
],
"recommends": [
"libc6 (>= 2.2.1)",
"exim | mail-transport-agent"
],
"suggests": [
"libc6 (>= 2.2.1)",
"exim | mail-transport-agent"
],
"enhances": [
"libc6 (>= 2.2.1)",
"exim | mail-transport-agent"
],
"pre-depends": [
"libc6 (>= 2.2.1)",
"exim | mail-transport-agent"
],
"built-using": [
"gcc-4.6 (= 4.6.0-11)"
],
"description": "short desc of the program",
"description-extended": "long desc of the program with multiline",
"package-type": "deb",
"cron-files": {
"hourly": "",
"daily": "",
"d": ""
},
"cron-cmds": {
"hourly": "",
"daily": "",
"d": ""
},
"systemd-file": "",
"init-file": "",
"default-file": "",
"preinst-file": "",
"postinst-file": "",
"prerm-file": "",
"postrm-file": "",
"changelog-file": "",
"changelog-cmd": "",
"mans": [
"docs/man.page.1"
],
"menus": [
{
"name":"go-deb-bin",
"description":"make a bin debian package",
"generic-name":"go-deb-bin",
"exec":"go-deb-bin -h",
"icon":"ico.png",
"type":"Application",
"startup-notify": false,
"categories":"Applications/see-menu-manual",
"mime-type":"make a bin debian package"
}
]
}