Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

38
linux/makepkg Normal file
View File

@@ -0,0 +1,38 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# makepkg
> Create a package which can be used with `pacman`.
> Uses the `PKGBUILD` file in the current working directory by default.
> More information: <https://man.archlinux.org/man/makepkg.8>.
- Make a package:
`makepkg`
- Make a package and install its dependencies:
`makepkg --syncdeps`
- Make a package, install its dependencies then install it to the system:
`makepkg --syncdeps --install`
- Make a package, but skip checking the source's hashes:
`makepkg --skipchecksums`
- Clean up work directories after a successful build:
`makepkg --clean`
- Verify the hashes of the sources:
`makepkg --verifysource`
- Generate and save the source information into `.SRCINFO`:
`makepkg --printsrcinfo > .SRCINFO`