From df3e8e3a83aa8fafb654b5c6259629e505a2e36d Mon Sep 17 00:00:00 2001 From: partisan Date: Thu, 13 Feb 2025 07:23:16 +0000 Subject: [PATCH] Update README.md --- README.md | 49 ++++++++++++++++--------------------------------- 1 file changed, 16 insertions(+), 33 deletions(-) diff --git a/README.md b/README.md index e546e0a..03a9925 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,8 @@ Below is a detailed description of all the flags supported by the Spitfire Build Skips updating the patches repository. - **`-r`**: Runs the built project after the build process completes successfully. +- **`--skip-deps`**: + Skip checking for required system dependencies. ### **Compression and Upload Flags** @@ -81,24 +83,24 @@ Below is a detailed description of all the flags supported by the Spitfire Build ## Example usage: -- **All steps**: +- **All build steps**: ```sh go run . -a ``` -- **Build only**: +- **All build setps without fetching new patches**: ```sh -go run . -b +go run . -a --skip-patch-update ``` - **Upload**: ```sh -go run . --upload -c --upload-path=./mozilla-central/obj-x86_64-pc-linux-gnu/dist/bin +go run . --upload -c ``` - **Build and upload**: ```sh -go run . --upload -c --upload-path=./mozilla-central/obj-x86_64-pc-linux-gnu/dist/bin -a +go run . --upload -c -a ``` - **Display all flags**: @@ -148,65 +150,46 @@ c:a6af7ebb5c1382084704be0b5714ab026c819d63 ## Repository structure +[Link to repositary](https://sourceforge.net/projects/spitfire-browser/) + ``` spitfire-browser/ ├── browser/ │ ├── amd64/ │ │ ├── stable/ -│ │ │ ├── latest/deb.tar.gz -│ │ │ ├── x.x.x/deb.tar.gz +│ │ │ ├── vx.x.x/deb.tar.gz │ │ ├── nightly/ -│ │ ├── latest/deb.tar.gz │ │ ├── yyyy-mm-dd/deb.tar.gz │ ├── arm/ │ │ ├── stable/ -│ │ │ ├── latest/ -│ │ │ ├── x.x.x/ +│ │ │ ├── vx.x.x/ │ │ ├── nightly/ -│ │ ├── latest/ │ │ ├── yyyy-mm-dd/ -├── cli-package-manager/ +├── luncher/ │ ├── stable/ -│ │ ├── latest/ -│ │ ├── x.x.x/ +│ │ ├── vx.x.x/ │ ├── nightly/ -│ ├── latest/ │ ├── yyyy-mm-dd/ -├── gui-installer/ +├── installer/ │ ├── stable/ -│ │ ├── latest/ -│ │ ├── x.x.x/ +│ │ ├── vx.x.x/ │ ├── nightly/ -│ ├── latest/ │ ├── yyyy-mm-dd/ -├── gui-package-manager/ -│ ├── stable/ -│ │ ├── latest/ -│ │ ├── x.x.x/ -│ ├── nightly/ -│ ├── latest/ -│ ├── yyyy-mm-dd/ -├── addons/ +├── addons/ (planned) │ ├── themes/ │ │ ├── stable/ -│ │ │ ├── latest/ │ │ │ ├── x.x.x/ │ │ ├── nightly/ -│ │ ├── latest/ │ │ ├── yyyy-mm-dd/ │ ├── custom-configs/ │ │ ├── stable/ -│ │ │ ├── latest/ │ │ │ ├── x.x.x/ │ │ ├── nightly/ -│ │ ├── latest/ │ │ ├── yyyy-mm-dd/ │ ├── search-engines/ │ ├── stable/ -│ │ ├── latest/ │ │ ├── x.x.x/ │ ├── nightly/ -│ ├── latest/ │ ├── yyyy-mm-dd/ ├── APPINDEX ``` \ No newline at end of file