diff options
author | Aylur <[email protected]> | 2024-09-25 23:22:01 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-25 23:22:01 +0000 |
commit | 65654282a98cb0590d498e4ed9c924f97646f1dc (patch) | |
tree | 9150a8c5dca5429fafdd559db6e88f8bccb23d84 /docs/getting-started/installation.md | |
parent | fd8c3e81d8f7b235be123ce592f89e72f65a0f05 (diff) |
docs: restructure
Diffstat (limited to 'docs/getting-started/installation.md')
-rw-r--r-- | docs/getting-started/installation.md | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md deleted file mode 100644 index ef5c6e8..0000000 --- a/docs/getting-started/installation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Installation - -## Nix - -maintainer: [@Aylur](https://github.com/Aylur) - -Read more about it on the [nix page](./nix#astal) - -## Arch - -maintainer: [@kotontrion](https://github.com/kotontrion) - -:::code-group - -```sh [Core Library] -yay -S libastal-git -``` - -```sh [Every Library] -yay -S libastal-meta -``` - -::: - -## Bulding libastal from source - -1. Clone the repo - -```sh -git clone https://github.com/aylur/astal.git -cd astal/core -``` - -2. Install the following dependencies - -:::code-group - -```sh [<i class="devicon-archlinux-plain"></i> Arch] -sudo pacman -Syu meson vala gtk3 gtk-layer-shell gobject-introspection -``` - -```sh [<i class="devicon-fedora-plain"></i> Fedora] -sudo dnf install meson gcc valac gtk3-devel gtk-layer-shell-devel gobject-introspection-devel -``` - -```sh [<i class="devicon-ubuntu-plain"></i> Ubuntu] -sudo apt install meson valac libgtk3-dev libgtk-layer-shell-dev gobject-introspection -``` - -::: - -3. Build and install with `meson` - -```sh -meson setup build -meson install -C build -``` - -:::tip -Most distros recommend manual installs in `/usr/local`, -which is what `meson` defaults to. If you want to install to `/usr` -instead which most package managers do, set the `prefix` option: - -```sh -meson setup --prefix /usr build -meson install -C build -``` - -::: |