-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathavr-gcc.json
76 lines (76 loc) · 2.7 KB
/
avr-gcc.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
{
"version": "14.1.0",
"description": "AVR toolchain for Windows by Zak Kemble",
"homepage": "https://blog.zakkemble.net/avr-gcc-builds/",
"license": "BSD-3-Clause",
"architecture": {
"64bit": {
"url": "https://github.com/ZakKemble/avr-gcc-build/releases/download/v14.1.0-1/avr-gcc-14.1.0-x64-windows.zip",
"hash": "d0efbf289004b2d700ae039aa0b592d7d34a9e797e8fe8aa1fef249e997bbae7",
"extract_dir": "avr-gcc-14.1.0-x64-windows"
},
"32bit": {
"url": "https://github.com/ZakKemble/avr-gcc-build/releases/download/v14.1.0-1/avr-gcc-14.1.0-x86-windows.zip",
"hash": "b05b11b0843e67b021b8037467f32d50ec64505e48ac5c465c70dc5b8a7195ba",
"extract_dir": "avr-gcc-14.1.0-x86-windows"
}
},
"bin": [
"bin\\avr-addr2line.exe",
"bin\\avr-ar.exe",
"bin\\avr-as.exe",
"bin\\avr-c++.exe",
"bin\\avr-c++filt.exe",
"bin\\avr-cpp.exe",
"bin\\avr-elfedit.exe",
"bin\\avr-g++.exe",
"bin\\avr-gcc-ar.exe",
"bin\\avr-gcc-nm.exe",
"bin\\avr-gcc-ranlib.exe",
"bin\\avr-gcc.exe",
"bin\\avr-gcov-dump.exe",
"bin\\avr-gcov-tool.exe",
"bin\\avr-gcov.exe",
"bin\\avr-gdb.exe",
"bin\\avr-gprof.exe",
"bin\\avr-ld.bfd.exe",
"bin\\avr-ld.exe",
"bin\\avr-lto-dump.exe",
"bin\\avr-nm.exe",
"bin\\avr-objcopy.exe",
"bin\\avr-objdump.exe",
"bin\\avr-ranlib.exe",
"bin\\avr-readelf.exe",
"bin\\avr-run.exe",
"bin\\avr-size.exe",
"bin\\avr-strings.exe",
"bin\\avr-strip.exe",
"bin\\avrdude.exe",
"bin\\make.exe"
],
"post_install": [
"# manually shim bin\\avr-gcc-$version.exe",
"scoop shim add \"avr-gcc-$version\" \"$dir\\bin\\avr-gcc-$version.exe\""
],
"uninstaller": {
"script": "scoop shim rm \"avr-gcc-$version\""
},
"checkver": {
"github": "https://github.com/ZakKemble/avr-gcc-build"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/ZakKemble/avr-gcc-build/releases/download/v$version-1/avr-gcc-$version-x64-windows.zip",
"extract_dir": "avr-gcc-$version-x64-windows"
},
"32bit": {
"url": "https://github.com/ZakKemble/avr-gcc-build/releases/download/v$version-1/avr-gcc-$version-x86-windows.zip",
"extract_dir": "avr-gcc-$version-x86-windows"
}
},
"hash": {
"url": "$baseurl/SHA256SUMS"
}
}
}