diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/install.html | 2 | ||||
| -rw-r--r-- | docs/packagemanager.html | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/docs/install.html b/docs/install.html index 9968a9ad..51063424 100644 --- a/docs/install.html +++ b/docs/install.html @@ -280,7 +280,7 @@ sway <pre><code># apkg -I meson cmake pkgconf libtool automake perl </code></pre> <blockquote> -<p>NOTE: use upppercase 'i' for solve dependencies, lowecase 'i' without solve dependencies.</p> +<p>NOTE: use uppercase 'i' for solve dependencies, lowercase 'i' without solve dependencies.</p> </blockquote> <p>Now lets upgrade our system.</p> <pre><code># apkg -U diff --git a/docs/packagemanager.html b/docs/packagemanager.html index 1104740d..076a0141 100644 --- a/docs/packagemanager.html +++ b/docs/packagemanager.html @@ -182,7 +182,7 @@ <h1>Package Manager</h1> <p>In Alice, two package manager are used, <a href="https://codeberg.org/emmett1/spm">spm</a> and <a href="https://codeberg.org/emmett1/autils">autils</a>. And why two package manager? <code>spm</code> was written for generic package manager for linux distribution. And <code>autils</code> is written specifically for <code>Alice</code> and requires <code>spm</code> in order to install, remove and update packages while managing conflicts. The command <code>apkg</code> (part of <code>autils</code>) is used to fetch and build packages from ports and their <code>abuild</code> files.</p> <h2>spm</h2> -<p><code>spm</code> stands for <code>simple package manager</code>. It does simple and minimal written in POSIX compliance shell script. It only depends on core utils and tar (or busybox's utils and tar). <code>spm</code> only intended for compressing some directory into package, then extract package into system with files being tracked into database. Theres is no build script, recipe or ports in <code>spm</code>. You can write your own tools to use with <code>spm</code> either like Arch Linux's <code>makepkg</code>, CRUX's <code>pkgmk</code> or Slackware's <code>slackbuild</code> script.</p> +<p><code>spm</code> stands for <code>simple package manager</code>. It does simple and minimal written in POSIX compliance shell script. It only depends on core utils and tar (or busybox's utils and tar). <code>spm</code> only intended for compressing some directory into package, then extract package into system with files being tracked into database. There is no build script, recipe or ports in <code>spm</code>. You can write your own tools to use with <code>spm</code> either like Arch Linux's <code>makepkg</code>, CRUX's <code>pkgmk</code> or Slackware's <code>slackbuild</code> script.</p> <h2>spm - usage</h2> <p>list <code>spm</code> usage:</p> <pre><code>-a print all installed packages @@ -321,7 +321,7 @@ swayfx [...] Press ENTER to continue operation. [...] Press Ctrl + C to abort. </code></pre> -<p>install package without solving dependencies (mind the lowercase <code>i</code> and theres no prompt for this option):</p> +<p>install package without solving dependencies (mind the lowercase <code>i</code> and the absence prompt for this option):</p> <pre><code># apkg -i wlroots mesa [...] Package 'wlroots' already installed. [...] Package 'mesa' already installed. @@ -377,7 +377,7 @@ util-macros [pango] Upgrading package... [pango] Package 'pango#1.54.0-1' upgraded. </code></pre> -<p>full system upgrades (mind uppercase <code>u</code> and will prompt first if theres package updates):</p> +<p>full system upgrades (mind uppercase <code>u</code> and will prompt first if there is package updates):</p> <pre><code># apkg -U [...] Checking for outdated packages... [...] Solving dependencies... @@ -418,7 +418,7 @@ APKG_NOPROMPT defaults is empty, skip prompt, use any value <pre><code># APKG_CONF=/etc/apkg-local.conf apkg <args> </code></pre> <h2>revdep</h2> -<p><code>revdep</code> is script to find broken packages. Its recomended to run after packages is removed or upgraded.</p> +<p><code>revdep</code> is script to find broken packages. Its recommended to run after packages is removed or upgraded.</p> <p>Usage:</p> <pre><code>(print out broken packages) $ revdep @@ -433,7 +433,7 @@ $ revdep -v <p>NOTE: <code>revdep</code> does not solve dependencies, so you might need manually rebuild broken packages instead combine with <code>apkg</code>.</p> </blockquote> <h2>updateconf</h2> -<p><code>updateconf</code> is script to update configuration files inside <code>/etc</code> directory. Its recomended to run after packages upgrades.</p> +<p><code>updateconf</code> is script to update configuration files inside <code>/etc</code> directory. Its recommended to run after packages upgrades.</p> <h2>apkg-chroot</h2> <p>Script to entering chroot environment of custom root location.</p> <pre><code># apkg-chroot <customroot path> @@ -456,7 +456,7 @@ $ revdep -v # apkg-clean | xargs rm </code></pre> <h2>apkg-deps</h2> -<p>Script to find runtime linked dependencies of installed package. Its good to figure out dependenciess when writing package template.</p> +<p>Script to find runtime linked dependencies of installed package. Its good to figure out dependencies when writing package template.</p> <p>Usage:</p> <pre><code>$ apkg-deps <pkg> </code></pre> |