From 7653a1f626e342296aba62828aa572ba897bd449 Mon Sep 17 00:00:00 2001 From: Stanislav Bogatyrev Date: Thu, 27 Oct 2022 21:26:59 +0300 Subject: [PATCH] [#409] Fix package building doc typos Signed-off-by: Stanislav Bogatyrev --- docs/building-deb-package.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/docs/building-deb-package.md b/docs/building-deb-package.md index 7f8947c6..26a77a27 100644 --- a/docs/building-deb-package.md +++ b/docs/building-deb-package.md @@ -2,9 +2,10 @@ ## Prerequisites -For now, we're assuming building for Debian 11 (stable) x86_64 on Debian 11 x86_64. +For now, we're assuming building for Debian 11 (stable) x86_64. -Go version 18.4 or later should be installed from official Go repos binaries should be buildable, i.e. this should run successfully: +Go version 18.4 or later should already be installed, i.e. this runs +successfully: * `make all` @@ -34,11 +35,12 @@ $ dh clean # Package versioning -By default, package version is based on product version and may also contain -git tags and hashes. -Package version could be overwritten by setting PACK_VERSION variable before -build, Debian package versioining rules should be respected. +By default, package version is based on product version and may also contain git +tags and hashes. + +Package version could be overwritten by setting `PKG_VERSION` variable before +build, Debian package versioning rules should be respected. ```shell -$ PACK_VERSION=0.32 make debpackge +$ PKG_VERSION=0.32.0 make debpackge ```