From 697454b8933e26a4e0ce8013a03a2a0671a65c03 Mon Sep 17 00:00:00 2001 From: Rashil Gandhi <46838874+rashil2000@users.noreply.github.com> Date: Sun, 18 Dec 2022 13:45:21 +0530 Subject: [PATCH] Add a template manifest file --- bucket/.gitkeep | 2 -- bucket/app-name.json.template | 63 +++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 2 deletions(-) delete mode 100644 bucket/.gitkeep create mode 100644 bucket/app-name.json.template diff --git a/bucket/.gitkeep b/bucket/.gitkeep deleted file mode 100644 index acf3e6b..0000000 --- a/bucket/.gitkeep +++ /dev/null @@ -1,2 +0,0 @@ -# This directory stores all the JSON manifests. -# Delete this '.gitkeep' file once this directory has any files. diff --git a/bucket/app-name.json.template b/bucket/app-name.json.template new file mode 100644 index 0000000..e3bbbd2 --- /dev/null +++ b/bucket/app-name.json.template @@ -0,0 +1,63 @@ +{ + "##": "This file is a template. Fill the blanks and add or remove fields as necessary.", + "version": "", + "description": "", + "homepage": "", + "license": "", + "notes": "", + "architecture": { + "64bit": { + "url": "", + "hash": "" + }, + "32bit": { + "url": "", + "hash": "" + }, + "arm64": { + "url": "", + "hash": "" + } + }, + "pre_install": "", + "installer": { + "script": "" + }, + "post_install": [ + "", + "" + ], + "uninstaller": { + "script": "" + }, + "bin": "", + "env_add_path": [ + "", + "" + ], + "persist": [ + "", + "" + ], + "checkver": { + "url": "", + "regex": "" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "" + }, + "32bit": { + "url": "" + }, + "arm64": { + "url": "" + } + }, + "hash": { + "url": "", + "regex": "" + } + } +}