diff --git a/pages/linux/makepkg.md b/pages/linux/makepkg.md index d4c12d6922..07b13aa4f7 100644 --- a/pages/linux/makepkg.md +++ b/pages/linux/makepkg.md @@ -1,10 +1,10 @@ # makepkg -> Creates a package installable with the `pacman` package manager. -> Runs the commands from a `PKGBUILD` file to build the package. +> Create a package which can be used with `pacman`. +> Uses the `PKGBUILD` file in the current working directory by default. > More information: . -- Make a package (run in the same directory as a `PKGBUILD`): +- Make a package: `makepkg` @@ -12,11 +12,11 @@ `makepkg --syncdeps` -- Same as above, but install the package with `pacman` when done: +- Make a package, install its dependencies then install it to the system: `makepkg --syncdeps --install` -- Make a package, but skip source checksums: +- Make a package, but skip checking the source's hashes: `makepkg --skipchecksums`