summaryrefslogtreecommitdiff
path: root/docs/guide/getting-started/installation.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/guide/getting-started/installation.md')
-rw-r--r--docs/guide/getting-started/installation.md16
1 files changed, 7 insertions, 9 deletions
diff --git a/docs/guide/getting-started/installation.md b/docs/guide/getting-started/installation.md
index af82cf5..aaa6d0d 100644
--- a/docs/guide/getting-started/installation.md
+++ b/docs/guide/getting-started/installation.md
@@ -13,7 +13,7 @@ maintainer: [@kotontrion](https://github.com/kotontrion)
:::code-group
```sh [Core Library]
-yay -S libastal-git
+yay -S libastal-io-git libastal-git
```
```sh [Every Library]
@@ -28,7 +28,6 @@ yay -S libastal-meta
```sh
git clone https://github.com/aylur/astal.git
-cd astal/core
```
2. Install the following dependencies
@@ -51,19 +50,18 @@ sudo apt install meson valac libgtk-3-dev libgtk-layer-shell-dev gobject-introsp
3. Build and install with `meson`
+- astal-io
+
```sh
-meson setup build
+cd lib/astal/io
+meson setup --prefix /usr 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:
+- astal3
```sh
+cd lib/astal/gtk3
meson setup --prefix /usr build
meson install -C build
```
-
-:::