From 9b37e27383a6c3f7da41bb88d898209de30182d0 Mon Sep 17 00:00:00 2001 From: tech189 Date: Tue, 20 Dec 2022 21:25:16 +0000 Subject: [PATCH] lilypond: Update to version 2.24.0 Added architecture block because app is now 64bit only Removed shortcut to LilyPad because it has been discontinued - see https://lilypond.org/doc/v2.24/Documentation/changes/index.html Builds moved to GitLab, so checkver & autoupdate updated Extract_dir added --- bucket/lilypond.json | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/bucket/lilypond.json b/bucket/lilypond.json index a85cc6cbe3..c59f1be844 100644 --- a/bucket/lilypond.json +++ b/bucket/lilypond.json @@ -1,22 +1,26 @@ { - "version": "2.22.2-1", + "version": "2.24.0", "description": "A music engraving program devoted to producing the highest-quality sheet music possible.", "homepage": "http://lilypond.org", "license": "GPL-3.0-or-later", - "url": "http://lilypond.org/download/binaries/mingw/lilypond-2.22.2-1.mingw.exe#/dl.7z", - "hash": "3593990ba2e60cb3650da8cd1e469cee00dc8044c21501e5f347e46b155b4a69", - "bin": "usr\\bin\\lilypond.exe", - "shortcuts": [ - [ - "usr\\bin\\lilypad.exe", - "LilyPad" - ] - ], + "architecture": { + "64bit": { + "url": "https://gitlab.com/lilypond/lilypond/-/releases/v2.24.0/downloads/lilypond-2.24.0-mingw-x86_64.zip", + "hash": "6559f341bd590444f5924f62a810bb388cefe42a90ba9932dfbf16605614c808" + } + }, + "extract_dir": "lilypond-2.24.0", + "bin": "bin\\lilypond.exe", "checkver": { - "url": "http://lilypond.org/windows.html", - "regex": "/lilypond-([\\d.-]+).mingw\\.exe" + "url": "http://lilypond.org/download.html", + "regex": "lilypond-([\\d.-]+)-mingw" }, "autoupdate": { - "url": "http://lilypond.org/download/binaries/mingw/lilypond-$version.mingw.exe#/dl.7z" + "architecture": { + "64bit": { + "url": "https://gitlab.com/lilypond/lilypond/-/releases/v$version/downloads/lilypond-$version-mingw-x86_64.zip", + "extract_dir": "lilypond-$version" + } + } } }