From b4663ab92013859b8b96a981f2fc25e714ce62f9 Mon Sep 17 00:00:00 2001 From: Aetopia <41850963+Aetopia@users.noreply.github.com> Date: Mon, 11 Mar 2024 07:04:29 +0530 Subject: [PATCH] bflat: Add version 8.0.2 (#5591) * Add bflat's manifest. * Update description for bflat. * Use the correct software specific license for bflat. --- bucket/bflat.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 bucket/bflat.json diff --git a/bucket/bflat.json b/bucket/bflat.json new file mode 100644 index 0000000000..3ff133be90 --- /dev/null +++ b/bucket/bflat.json @@ -0,0 +1,32 @@ +{ + "version": "8.0.2", + "description": "C# as you know it but with Go-inspired tooling that produces small, selfcontained, and native executables out of the box.", + "homepage": "https://github.com/bflattened/bflat", + "license": "MIT", + "architecture": { + "64bit": { + "url": "https://github.com/bflattened/bflat/releases/download/v8.0.2/bflat-8.0.2-windows-x64.zip", + "hash": "25b03214c6085607ec2ec5fc86139c93e054edd60266296e708f763455961e7e" + }, + "arm64": { + "url": "https://github.com/bflattened/bflat/releases/download/v8.0.2/bflat-8.0.2-windows-arm64.zip", + "hash": "d44b87fdd00d3414d6032bfaf2cadb9ef8d22f342b61d5573d03ac4e7649c5e4" + } + }, + "bin": "bflat.exe", + "checkver": { + "url": "https://api.github.com/repos/bflattened/bflat/releases/latest", + "jsonpath": "$.tag_name", + "regex": "v([\\d.]+)" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/bflattened/bflat/releases/download/v$version/bflat-$version-windows-x64.zip" + }, + "arm64": { + "url": "https://github.com/bflattened/bflat/releases/download/v$version/bflat-$version-windows-arm64.zip" + } + } + } +}