1
0

libreoffice.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "version": "7.1.3.2",
  3. "description": "Powerful office suite, modified version",
  4. "homepage": "https://libreoffice.org/",
  5. "license": "MPL-2.0",
  6. "suggest": {
  7. "Visual C++ Redistributable for Visual Studio 2015": "vcredist2015"
  8. },
  9. "architecture": {
  10. "64bit": {
  11. "url": "https://downloadarchive.documentfoundation.org/libreoffice/old/7.1.3.2/win/x86_64/LibreOffice_7.1.3.2_Win_x64.msi#/dl.ism",
  12. "hash": "b5ececf9df20cc3628046a44d725400188ac83957043d28ebdccb3ce5aa83e0b"
  13. },
  14. "32bit": {
  15. "url": "https://downloadarchive.documentfoundation.org/libreoffice/old/7.1.3.2/win/x86/LibreOffice_7.1.3.2_Win_x86.msi#/dl.ism",
  16. "hash": "467f783f941d1686aacf215b892da9eedf08e9e2807cd9553e157ae653ef1985"
  17. }
  18. },
  19. "pre_install": [
  20. "$_args = @{",
  21. " 'Path' = \"$dir\\$fname\"",
  22. " 'DestinationPath' = \"$dir\"",
  23. " 'Removal' = $true",
  24. "}",
  25. "if (get_config 'MSIEXTRACT_USE_LESSMSI' $false) { $_args.Add('ExtractDir', 'LibreOffice') }",
  26. "Expand-MsiArchive @_args"
  27. ],
  28. "shortcuts": [
  29. [
  30. "program\\sbase.exe",
  31. "LibreOffice\\LibreOffice Base"
  32. ],
  33. [
  34. "program\\scalc.exe",
  35. "LibreOffice\\LibreOffice Calc"
  36. ],
  37. [
  38. "program\\sdraw.exe",
  39. "LibreOffice\\LibreOffice Draw"
  40. ],
  41. [
  42. "program\\simpress.exe",
  43. "LibreOffice\\LibreOffice Impress"
  44. ],
  45. [
  46. "program\\smath.exe",
  47. "LibreOffice\\LibreOffice Math"
  48. ],
  49. [
  50. "program\\swriter.exe",
  51. "LibreOffice\\LibreOffice Writer"
  52. ]
  53. ],
  54. "checkver": {
  55. "url": "https://www.libreoffice.org/download/download/",
  56. "regex": "libreoffice-([\\d.]+)\\.tar\\.xz"
  57. },
  58. "autoupdate": {
  59. "architecture": {
  60. "64bit": {
  61. "url": "https://downloadarchive.documentfoundation.org/libreoffice/old/$version/win/x86_64/LibreOffice_$version_Win_x64.msi#/dl.ism"
  62. },
  63. "32bit": {
  64. "url": "https://downloadarchive.documentfoundation.org/libreoffice/old/$version/win/x86/LibreOffice_$version_Win_x86.msi#/dl.ism"
  65. }
  66. },
  67. "hash": {
  68. "url": "$url.sha256"
  69. }
  70. }
  71. }