From 62d5fac9c1bd7fc9b1832aa6a5f09cc7ee20c0af Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Mon, 3 Feb 2025 13:49:03 +0545 Subject: [PATCH] Pkg Build Notice [ Note ] (#12) --- docs/.vitepress/config.ts | 1 + docs/installation/pkg.md | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 docs/installation/pkg.md diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index b6ec190..c41b796 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -41,6 +41,7 @@ export default { { text: "Terminal", link: "/installation/cli" }, { text: "Commands", link: "/installation/cmd" }, { text: "TUI", link: "/installation/tui" }, + { text: "PKG Build", link: "/installation/pkg" }, ], }, { diff --git a/docs/installation/pkg.md b/docs/installation/pkg.md new file mode 100644 index 0000000..163d280 --- /dev/null +++ b/docs/installation/pkg.md @@ -0,0 +1,37 @@ +
+ +# [`Carch Aur Packages`](https://github.com/carch-org/pkgs) + +
+ + +> [!IMPORTANT] +> Installing or uploading packages that act as installer scripts or customize the system in a way that diverges from the official guidelines is not allowed on the AUR. +> +> As such, the package has been removed from the AUR. I respect the AUR guidelines, and I encourage you to check the main Carch project for alternative installation methods. Thank you! + +> [!NOTE] +> Carch is not available on the AUR because it is a script. However, you can use the provided package build to run Carch as a package, similar to an AUR package, or visit the Carch documentation for the CLI installer. + +*Assuming, You have already install dependency like: `make` & `git`* + +### 📦 Package Build [ Stable ] + +```sh [Package Build ] +git clone https://github.com/carch-org/pkgs +cd pkgs/carch +makepkg -si +``` + +### 📦 Git Package Build [ Latest Git-Build ] + +```sh [Git Package Build ] +git clone https://github.com/carch-org/pkgs +cd pkgs/carch-git +makepkg -si +``` + +> [!NOTE] +> You can use the `carch` package for stable updates with the latest release, or use the `git package` to get the most recent changes directly from the Carch GitHub repository. +> +> And please don't mix up the installation methods. Stick to either the `PKGBUILD` or the `CLI` installation.