forked from hermanjustnu/scoop-emulators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmame.json
43 lines (43 loc) · 1.49 KB
/
mame.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
{
"homepage": "http://mamedev.org/",
"license": "GPL-2.0-or-later",
"version": "0.204",
"architecture": {
"64bit": {
"url": "https://github.com/mamedev/mame/releases/download/mame0204/mame0204b_64bit.exe#/dl.7z",
"hash": "d5d40fa6a099424ea6f672c1c1c58e1f8b4e72200bcd5b1ef37449ca98991290",
"bin": [
[
"mame64.exe",
"mame"
]
]
},
"32bit": {
"url": "https://github.com/mamedev/mame/releases/download/mame0204/mame0204b_32bit.exe#/dl.7z",
"hash": "fac25544f6b6be0357e4abf38f8173a4d11dadacc359a533323f5c91af2ce846",
"bin": "mame.exe"
}
},
"pre_install": "Add-Content $dir\\mame.ini $null",
"post_install": [
"Push-Location \"$dir\"",
"mame -createconfig",
"Pop-Location"
],
"persist": "mame.ini",
"checkver": {
"url": "https://github.com/mamedev/mame/releases/latest",
"re": "<a href=\"/mamedev/mame/releases/tag/mame(?<clean>[\\d]+)\">MAME ([\\d.]+)</a>"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/mamedev/mame/releases/download/mame$cleanVersion/mame$cleanVersionb_64bit.exe#/dl.7z"
},
"32bit": {
"url": "https://github.com/mamedev/mame/releases/download/mame$cleanVersion/mame$cleanVersionb_32bit.exe#/dl.7z"
}
}
}
}