snippetbashTip
makepkg — Create a package which can be used with `pacman`. Uses the `PKGBUILD` file in the current working di
Viewed 0 times
createcommandcanmakepkgusedclipackagewhich
linux
Problem
How to use the
makepkg command: Create a package which can be used with pacman. Uses the PKGBUILD file in the current working directory by default. More information: <https://manned.org/makepkg>.Solution
makepkg — Create a package which can be used with pacman. Uses the PKGBUILD file in the current working directory by default. More information: <https://manned.org/makepkg>.Make a package:
makepkgMake a package and install its dependencies:
makepkg {{[-s|--syncdeps]}}Make a package, install its dependencies then install it to the system:
makepkg {{[-si|--syncdeps --install]}}Make a package, but skip checking the source's hashes:
makepkg --skipchecksumsClean up work directories after a successful build:
makepkg {{[-c|--clean]}}Verify the hashes of the sources:
makepkg --verifysourceGenerate and save the source information into
.SRCINFO:makepkg --printsrcinfo > .SRCINFODownload the source and install only the build dependencies for a program:
makepkg {{[-so|--syncdeps --nobuild]}}Code Snippets
Make a package
makepkgMake a package and install its dependencies
makepkg {{[-s|--syncdeps]}}Make a package, install its dependencies then install it to the system
makepkg {{[-si|--syncdeps --install]}}Make a package, but skip checking the source's hashes
makepkg --skipchecksumsClean up work directories after a successful build
makepkg {{[-c|--clean]}}Context
tldr-pages: linux/makepkg
Revisions (0)
No revisions yet.