diff options
author | David Runge <dave@sleepmap.de> | 2022-04-07 09:28:22 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2022-04-07 09:28:22 +0200 |
commit | 1061a488f7208273e598a5db4ac9c562e6e8712c (patch) | |
tree | c95d217dc94c9d9ed9ec06a22fe9668d52c813a6 | |
parent | 0803bb3d85ff284e7aa3239c296ed8895746f93e (diff) | |
download | sleepmap-1061a488f7208273e598a5db4ac9c562e6e8712c.tar.gz sleepmap-1061a488f7208273e598a5db4ac9c562e6e8712c.tar.bz2 sleepmap-1061a488f7208273e598a5db4ac9c562e6e8712c.tar.xz sleepmap-1061a488f7208273e598a5db4ac9c562e6e8712c.zip |
Fix more typos in the packaging article
posts/2022/packaging-for-arch-linux.rst:
Replace misspelled `pgkdir` with `pkgdir`.
-rw-r--r-- | posts/2022/packaging-for-arch-linux.rst | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/posts/2022/packaging-for-arch-linux.rst b/posts/2022/packaging-for-arch-linux.rst index 9b2e2f1..0b27eeb 100644 --- a/posts/2022/packaging-for-arch-linux.rst +++ b/posts/2022/packaging-for-arch-linux.rst @@ -229,7 +229,7 @@ files, that can be found in ``/usr/share/pacman/``: b2sums=('THISISADUMMYCHECKSUM') package() { - make DESTDIR="$pgkdir" install -C $pkgname-$pkgver + make DESTDIR="$pkgdir" install -C $pkgname-$pkgver } To go through the essentials of this very minimalistic example, which assumes @@ -407,11 +407,11 @@ provides separate install targets for the components). 'some-additional: for additional feature X' ) - make DESTDIR="$pgkdir" install-scripts -C $pkgname-$pkgver + make DESTDIR="$pkgdir" install-scripts -C $pkgname-$pkgver } package_dummy-package-docs() { - make DESTDIR="$pgkdir" install-docs -C $pkgname-$pkgver + make DESTDIR="$pkgdir" install-docs -C $pkgname-$pkgver } Binary repository management @@ -566,7 +566,7 @@ builtin dependency resolution. Extending upon the example in `PKGBUILDs } package() { - make DESTDIR="$pgkdir" install -C $pkgname-$pkgver + make DESTDIR="$pkgdir" install -C $pkgname-$pkgver } .. code:: sh @@ -589,7 +589,7 @@ builtin dependency resolution. Extending upon the example in `PKGBUILDs } package() { - make DESTDIR="$pgkdir" install -C $pkgname-$pkgver + make DESTDIR="$pkgdir" install -C $pkgname-$pkgver } If during build time ``libexample`` provided ``libexample.so.1``, the resulting @@ -710,6 +710,9 @@ the following are some good starting points: Update: I have fixed some typos. Thanks to Andreas Schleifer (Segaja) for noticing them! + Update: I have fixed more typos. Thanks to `doesntthinkmuch + <https://www.reddit.com/user/doesntthinkmuch/>`_ for noticing them. + .. [1] I am excluding `flatpak <https://flatpak.org/>`_ and `snap <https://snapcraft.io/>`_ in this article as they follow an app-store/ per-user installation paradigm. However, they relate to system's packaging |