package_optiboot_optiboot-additional_index.json.TEMPLATE 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Template file for generating the .json file that the Arduino IDE
  2. # "Boards Manager" wants to see. This file must be pre-processed
  3. # before it will be valid:
  4. # Strip comments.
  5. # Replace variables:
  6. # %VERSION% gets the Optiboot Version
  7. # %HASH% gets the SHA-256 has for the .zip file.
  8. # (generate with: openssl dgst -sha256 optiboot.zip | sed -e 's/.* //'
  9. # %SIZE% gets the size of the .zip file
  10. #
  11. {
  12. "packages": [
  13. {
  14. "name": "Optiboot",
  15. "maintainer": "westfw",
  16. "websiteURL": "https://github.com/Optiboot/optiboot",
  17. "email": "",
  18. "help": {
  19. "online": ""
  20. },
  21. "platforms": [
  22. {
  23. "name": "Optiboot %VERSION%",
  24. "architecture": "avr",
  25. "version": "0.%VERSION%",
  26. #
  27. # 3r party packages must use "Contributed"
  28. #
  29. "category": "Contributed",
  30. "help": {
  31. "online": "https://github.com/Optiboot/optiboot/wiki"
  32. },
  33. "url": "https://github.com/Optiboot/optiboot/releases/download/v%VERSION%/Optiboot%VERSION%.zip",
  34. "archiveFileName": "optiboot%VERSION%.zip",
  35. #
  36. # Package file verification data
  37. #
  38. "checksum": "SHA-256:%HASH%",
  39. "size": "%SIZE%",
  40. #
  41. "boards": [
  42. {"name": "New Optiboot"}
  43. ],
  44. "toolsDependencies": [
  45. {
  46. "packager": "arduino",
  47. "name": "avrdude",
  48. "version": "6.0.1-arduino5"
  49. }
  50. ]
  51. }
  52. ],
  53. "tools": []
  54. }
  55. ]
  56. }