diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-08-03 15:24:56 +0000 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-08-03 15:24:56 +0000 |
| commit | 8104654cd409187c743801223e29a922d7061161 (patch) | |
| tree | e4d587b583ad4065acd6d2072c2dd8cdfa754314 /docs | |
| parent | 96fc2dc6b4007bb401e8ce48d6c91e954675d4e3 (diff) | |
| parent | 70aeabcb8b6b44770f086f1cd52a1ba372878c43 (diff) | |
| download | alicelinux-8104654cd409187c743801223e29a922d7061161.tar.gz alicelinux-8104654cd409187c743801223e29a922d7061161.zip | |
Merge pull request 'repos_var' (#4) from mobinmob/alicelinux:repos_var into main
Reviewed-on: https://codeberg.org/emmett1/alicelinux/pulls/4
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/install.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/install.md b/docs/install.md index ad8b096c..e6669e2c 100644 --- a/docs/install.md +++ b/docs/install.md @@ -69,7 +69,7 @@ I'm also going to set `NINJAJOBS` here. Without it, `ninja` will use all threads ``` Next, we need to set the package's build scripts path (I'll call it `package repos`) so `apkg` can find them. The `APKG_REPO` variable can accept multiple values for multiple `package repos`. -Alice provides two (2) `package repos` (at the time of this writing), `core` and `extra`. `core` contains all base packages, and `extra` includes other packages beyond the base. +Alice provides four (4) `package repos` (at the time of this writing): `core`, `extra`, `xorg` and `wayland`. `core` contains all base packages, and `extra` includes other packages beyond the base. `xorg` and `wayland` contain packages for gui and their dependencies. First, get the absolute path of the `package repos` where we cloned them. By the way, we are still inside the `/var/lib` directory where we cloned the repo. >NOTE: USE TAB COMPLETION! @@ -83,6 +83,8 @@ After we have the path of our `package repos`, add it to the `APKG_REPO` variabl ``` # echo 'APKG_REPO="/var/lib/alicelinux/repos/core /var/lib/alicelinux/repos/extra"' >> /etc/apkg.conf ``` +>NOTE: All repo paths must be declared in the APKG_REPO variable, seperated by a single space. + After setting up our `package repos`, make sure `apkg` can find the packages. We can use `apkg -s <pattern>` to search for packages. ``` # apkg -s sway |