pkgmk
Pkgmk is a command line tool used in the Slackware Linux distribution for creating packages from source code. It stands for "Package Make" and is part of the pkgtools package. Pkgmk simplifies the process of building and packaging software by automating the compilation, installation, and organization of files. It takes a build script called a "pkgbuild" that specifies the necessary instructions and dependencies for building the package. Pkgmk retrieves the source code, compiles it, and installs it into a temporary root directory, where it then creates a package from the files. The resulting package can be easily installed, upgraded, or removed using the package manager. Pkgmk provides flexibility and control over the packaging process, allowing users to customize the build options and incorporate any necessary patches or modifications.
List of commands for pkgmk:
-
pkgmk:tldr:262ad pkgmk: Upgrade the package after making it.$ pkgmk -d -utry on your machineexplain this command
-
pkgmk:tldr:3d525 pkgmk: Ignore the MD5 sum when making a package.$ pkgmk -d -imtry on your machineexplain this command
-
pkgmk:tldr:3e76b pkgmk: Ignore the footprint when making a package.$ pkgmk -d -iftry on your machineexplain this command
-
pkgmk:tldr:7ec6e pkgmk: Update the package's footprint.$ pkgmk -uftry on your machineexplain this command
-
pkgmk:tldr:d87dc pkgmk: Make and download a package.$ pkgmk -dtry on your machineexplain this command
-
pkgmk:tldr:dbd0a pkgmk: Install the package after making it.$ pkgmk -d -itry on your machineexplain this command