summaryrefslogtreecommitdiff
path: root/docs/guide/getting-started
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-10-19 13:03:03 +0000
committerAylur <[email protected]>2024-10-19 13:03:03 +0000
commiteb3912af64038fb10b35a66ed64d4d9375b612a1 (patch)
tree9f05b93c321fd83459953c5a120d090ee78e0090 /docs/guide/getting-started
parent41fcfae3b5624aa16a8046c0197c35bd80257288 (diff)
update installation.md
Diffstat (limited to 'docs/guide/getting-started')
-rw-r--r--docs/guide/getting-started/installation.md12
1 files changed, 5 insertions, 7 deletions
diff --git a/docs/guide/getting-started/installation.md b/docs/guide/getting-started/installation.md
index e936bc4..844de25 100644
--- a/docs/guide/getting-started/installation.md
+++ b/docs/guide/getting-started/installation.md
@@ -24,7 +24,6 @@ yay -S libastal-meta
## Bulding libastal from source
-
1. Install the following dependencies
:::code-group
@@ -41,21 +40,20 @@ sudo dnf install meson gcc valac gtk3-devel gtk-layer-shell-devel gobject-intros
sudo apt install meson valac libgtk-3-dev libgtk-layer-shell-dev gobject-introspection libgirepository1.0-dev
```
+:::
+
2. Clone the repo
```sh
-git clone https://github.com/aylur/astal.git
-cd astal
+git clone https://github.com/aylur/astal.git /tmp/astal
```
-:::
-
3. Build and install with `meson`
- astal-io
```sh
-cd lib/astal/io
+cd /tmp/astal/lib/astal/io
meson setup --prefix /usr build
meson install -C build
```
@@ -63,7 +61,7 @@ meson install -C build
- astal3
```sh
-cd lib/astal/gtk3
+cd /tmp/astal/lib/astal/gtk3
meson setup --prefix /usr build
meson install -C build
```