PKGBUILD: Difference between revisions

From ArchWiki
(update svntogit URLs from (projects|git).archlinux.org to github.com)
(update Pkg/AUR templates)
 
(130 intermediate revisions by 42 users not shown)
Line 1: Line 1:
[[Category:Package development]]
[[Category:Package development]]
[[cs:PKGBUILD]]
[[da:PKGBUILD]]
[[el:PKGBUILD]]
[[es:PKGBUILD]]
[[es:PKGBUILD]]
[[fa:PKGBUILD]]
[[fr:PKGBUILD]]
[[fr:PKGBUILD]]
[[it:PKGBUILD]]
[[ja:PKGBUILD]]
[[ja:PKGBUILD]]
[[pl:PKGBUILD]]
[[pt:PKGBUILD]]
[[pt:PKGBUILD]]
[[ru:PKGBUILD]]
[[ru:PKGBUILD]]
[[sr:PKGBUILD]]
[[zh-hans:PKGBUILD]]
[[zh-hans:PKGBUILD]]
[[zh-hant:PKGBUILD]]
{{Related articles start}}
{{Related articles start}}
{{Related|Arch packaging standards}}
{{Related|Arch package guidelines}}
{{Related|Creating packages}}
{{Related|Creating packages}}
{{Related|.SRCINFO}}
{{Related|.SRCINFO}}
{{Related|Arch User Repository}}
{{Related|Arch User Repository}}
{{Related|:Category:Package development}}
{{Related|:Category:Package development}}
{{Related|Arch Build System}}
{{Related|Arch build system}}
{{Related|makepkg}}
{{Related|makepkg}}
{{Related articles end}}
{{Related articles end}}
Line 28: Line 20:
A {{ic|PKGBUILD}} is a shell script containing the build information required by [[Arch Linux]] packages.
A {{ic|PKGBUILD}} is a shell script containing the build information required by [[Arch Linux]] packages.


Packages in Arch Linux are built using the [[makepkg]] utility. When ''makepkg'' is run, it searches for a {{ic|PKGBUILD}} file in the current directory and follows the instructions therein to either compile or otherwise acquire the files to build a package archive ({{ic|''pkgname''.pkg.tar.xz}}). The resulting package contains binary files and installation instructions, readily installable with [[pacman]].
Packages in Arch Linux are built using the [[makepkg]] utility. When ''makepkg'' is run, it searches for a {{ic|PKGBUILD}} file in the current directory and follows the instructions therein to either compile or otherwise acquire the files to build a package archive ({{ic|''pkgname''.pkg.tar.zst}}). The resulting package contains binary files and installation instructions, readily installable with [[pacman]].


Mandatory variables are {{ic|pkgname}}, {{ic|pkgver}}, {{ic|pkgrel}}, and {{ic|arch}}. {{ic|license}} is not strictly necessary to build a package, but is recommended for any {{ic|PKGBUILD}} shared with others, as ''makepkg'' will produce a warning if not present.
Mandatory variables are {{ic|pkgname}}, {{ic|pkgver}}, {{ic|pkgrel}}, and {{ic|arch}}. {{ic|license}} is not strictly necessary to build a package, but is recommended for any {{ic|PKGBUILD}} shared with others, as ''makepkg'' will produce a warning if not present.


It is a common practice to define the variables in the {{ic|PKGBUILD}} in same order as given here. However, this is not mandatory, as long as correct [[Bash]] syntax is used.
It is a common practice to define the variables in the {{ic|PKGBUILD}} in the same order as given here. However, this is not mandatory, as long as correct [[Bash]] syntax is used.


{{Tip|Use [[namcap]] to check {{ic|PKGBUILD}}s for common packaging mistakes.}}
{{Tip|
* Use [[namcap]] to check {{ic|PKGBUILD}}s for common packaging mistakes.
* {{AUR|termux-language-server}} provides a language server for {{ic|PKGBUILD}}, {{ic|makepkg.conf}}, etc.
}}


== Package name ==
== Package name ==
Line 42: Line 37:
When building regular packages, this variable should not be explicitly declared in the {{ic|PKGBUILD}}: its value defaults to that of [[#pkgname]].
When building regular packages, this variable should not be explicitly declared in the {{ic|PKGBUILD}}: its value defaults to that of [[#pkgname]].


When building a [https://jlk.fjfi.cvut.cz/arch/manpages/man/PKGBUILD.5#PACKAGE_SPLITTING split package], this variable can be used to explicitly specify the name to be used to refer to the group of packages in the output of ''makepkg'' and in the naming of source-only tarballs. The value is not allowed to begin with a hyphen. If not specified, the value will default to the first element in the {{ic|pkgname}} array.
When building a [https://man.archlinux.org/man/PKGBUILD.5#PACKAGE_SPLITTING split package], this variable can be used to explicitly specify the name to be used to refer to the group of packages in the output of ''makepkg'' and in the naming of source-only tarballs. The value is not allowed to begin with a hyphen. If not specified, the value will default to the first element in the {{ic|pkgname}} array.


All options and directives for split packages default to the global values given in the {{ic|PKGBUILD}}. Nevertheless, the following ones can be overridden within each split package’s packaging function: [[#pkgdesc]], [[#arch]], [[#url]], [[#license]], [[#groups]], [[#depends]], [[#optdepends]], [[#provides]], [[#conflicts]], [[#replaces]], [[#backup]], [[#options]], [[#install]], and [[#changelog]].
All options and directives for split packages default to the global values given in the {{ic|PKGBUILD}}. Nevertheless, the following ones can be overridden within each split package’s packaging function: [[#pkgdesc]], [[#arch]], [[#url]], [[#license]], [[#groups]], [[#depends]], [[#optdepends]], [[#provides]], [[#conflicts]], [[#replaces]], [[#backup]], [[#options]], [[#install]], and [[#changelog]].
Line 93: Line 88:
=== arch ===
=== arch ===


An array of architectures that the {{ic|PKGBUILD}} is intended to build and work on. Arch officially supports only {{ic|x86_64}}, but other projects may support other architectures. For example, [https://archlinux32.org/ Arch Linux 32] provides support for {{ic|i686}} and [http://archlinuxarm.org/ Arch Linux ARM] provides support for {{ic|arm}} (armv5), {{ic|armv6h}} (armv6 hardfloat), {{ic|armv7h}} (armv7 hardfloat), and {{ic|aarch64}} (armv8 64-bit).
An array of architectures that the {{ic|PKGBUILD}} is intended to build and work on. Arch officially supports only {{ic|x86_64}}, but other projects may support other architectures. For example, [https://archlinux32.org/ Arch Linux 32] provides support for {{ic|i686}} and {{ic|pentium4}} and [https://archlinuxarm.org/ Arch Linux ARM] provides support for {{ic|armv7h}} (armv7 hardfloat) and {{ic|aarch64}} (armv8 64-bit).


There are two types of values the array can use:
There are two types of values the array can use:


* {{ic|1=arch=('any')}} indicates the package can be built once on any architecture, and once built, is architecture-independent in its compiled state (shell scripts, fonts, themes, many types of extensions, etc.).
* {{ic|1=arch=('any')}} indicates the package can be built once on any architecture, and once built, is architecture-independent in its compiled state (usually shell scripts, fonts, themes, many types of extensions, etc.).
 
* {{ic|1=arch=(...)}} with one or more architectures (but not {{ic|any}}) indicates the package can be compiled for any of the specified architectures, but is architecture-specific once compiled. For these packages, specify all architectures that the {{ic|PKGBUILD}} officially supports. For official repository and AUR packages, this means {{ic|1=arch=('x86_64')}}. Optionally, AUR packages may choose to additionally support other known working architectures.
* {{ic|1=arch=('x86_64')}} with one or more architectures indicates the package can be compiled for any of the specified architectures, but is architecture-specific once compiled. For these packages, specify all architectures that the {{ic|PKGBUILD}} officially supports. For official repository and AUR packages, this means ''x86_64''. Optionally, AUR packages may choose to additionally support other known working architectures.


The target architecture can be accessed with the variable {{ic|$CARCH}} during a build.
The target architecture can be accessed with the variable {{ic|$CARCH}} during a build.
Line 109: Line 103:
=== license ===
=== license ===


The license under which the software is distributed. The {{pkg|licenses}} package (a dependency of the {{Pkg|base}} [[meta package]]) contains many commonly used licenses, which are installed under {{ic|/usr/share/licenses/common/}}. If a package is licensed under one of these licenses, the value should be set to the directory name, e.g. {{ic|1=license=('GPL')}}. If the appropriate license is not included, several things must be done:
{{Expansion|Add more details from [https://lists.archlinux.org/hyperkitty/list/arch-dev-public@lists.archlinux.org/thread/NFSB7734U2VVDULPRY65ECXDE3XGNZXM/].}}


# Add {{ic|custom}} to the {{ic|license}} array. Optionally, you can replace {{ic|custom}} with {{ic|custom:''name of license''}}. Once a license is used in two or more packages in an official repository (including [[community repository|community]]), it becomes a part of the {{Pkg|licenses}} package.
{{Note|Arch Linux is [https://rfc.archlinux.page/0016-spdx-license-identifiers/ currently undergoing] a transition to SPDX style identifiers. Some issues may still require ironing out. This section focuses on the SPDX format. If you encounter any trouble, please report them and discuss with the community.}}
# Install the license in: {{ic|/usr/share/licenses/''pkgname''/}}, e.g. {{ic|/usr/share/licenses/foobar/LICENSE}}. One good way to do this is by using: {{bc|install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"}}
# If the license is only found in a website, then you need to separately include it in the package.


* The [[Wikipedia:BSD License|BSD]], [[Wikipedia:ISC license|ISC]], [[Wikipedia:MIT License|MIT]], [[Wikipedia:ZLIB license|zlib/png]], [[Wikipedia:Python License|Python]] and [[Wikipedia:SIL Open Font License|OFL]] licenses are special cases and could not be included in the {{pkg|licenses}} package. For the sake of the {{ic|license}} array, it is treated as a common license ({{ic|1=license=('BSD')}}, {{ic|1=license=('ISC')}}, {{ic|1=license=('MIT')}}, {{ic|1=license=('ZLIB')}}, {{ic|1=license=('Python')}}, and {{ic|1=license=('OFL')}}), but technically each one is a custom license, because each one has its own copyright line. Any package licensed under these five should have its own unique license file stored in {{ic|/usr/share/licenses/''pkgname''/}}.
The license under which the software is distributed. Arch Linux uses [[Wikipedia:Software_Package_Data_Exchange#License_syntax|SPDX license identifiers]]. Each license must have a corresponding entry in {{ic|/usr/share/licenses/}}.
* Some packages may not be covered by a single license. In these cases, multiple entries may be made in the {{ic|license}} array, e.g. {{ic|1=license=('GPL' 'custom:''name of license''')}}.
* (L)GPL has many versions and permutations of those versions. For (L)GPL software, the convention is:
** (L)GPL — (L)GPLv2 or any later version
** (L)GPL2 — (L)GPL2 only
** (L)GPL3 — (L)GPL3 or any later version
* If after researching the issue no license can be determined, [https://projects.archlinux.org/pacman.git/tree/proto/PKGBUILD.proto PKGBUILD.proto] suggests using {{ic|unknown}}. However, upstream should be contacted about the conditions under which the software is (and is not) available.


{{Tip|Some software authors do not provide separate license file and describe distribution rules in section of common {{ic|ReadMe.txt}}. This information can be extracted to a separate file during {{ic|build()}} with something like {{ic|sed -n '/'''This software'''/,/''' thereof.'''/p' ReadMe.txt > LICENSE}}}}
For common licenses (like {{ic|'GPL-3.0-or-later'}}), package {{pkg|licenses}} delivers all the corresponding files. The package is installed by default, as it is a dependency of {{pkg|base}} [[meta package]], and the files may be found in {{ic|/usr/share/licenses/spdx/}}. Simply refer to the license using its SPDX license identifier from the [https://spdx.org/licenses/ list of SPDX identifiers].
 
License families like BSD or MIT are, strictly speaking, not a single license and each instance requires a separate license file. In {{ic|license}} variable refer to them using a common SPDX identifier (e.g. {{ic|'BSD-3-Clause'}} or {{ic|'MIT'}}), but then provide the corresponding file as if it was a custom license.
 
For custom licenses the identifier should be either {{ic|LicenseRef-''license-name''}} or {{ic|custom:''license-name''}}, if they are not covered by the common families mentioned above. The corresponding license text must be placed in directory {{ic|/usr/share/licenses/''pkgname''}}. To install the file a following code snippet may be used in {{ic|package()}} section:
{{bc|install -Dm644 ''LICENSE'' "$pkgdir/usr/share/licenses/$pkgname/''LICENSE''"}}
 
Combining multiple licenses or adding exceptions should follow the SPDX syntax. For example a package released under ''either'' GNU/GPL 2.0 or GNU/LGPL 2.1 could use {{ic|'GPL-2.0-or-later OR LGPL-2.1-or-later'}}, while a package released under Apache 2.0 with LLVM exception: {{ic|'Apache-2.0 WITH LLVM-exception'}}. Note that this must be a single string, so the entire expression has to be enclosed in quotes. As for November 2023 [https://spdx.org/licenses/preview/exceptions-index.html SPDX list of exceptions] is limited, so usually the custom license route must be used.
 
If issues are encountered with SPDX identifiers, during the transitional period using old identifiers - names of the directories in {{ic|/usr/share/licenses/common}} - is acceptable.


See also [[Nonfree applications package guidelines]].
See also [[Nonfree applications package guidelines]].
Line 129: Line 124:
Additional information and perspectives on free and open source software licenses may be found on the following pages:
Additional information and perspectives on free and open source software licenses may be found on the following pages:


* [[Wikipedia:Free software licence]]
* [[Wikipedia:Free software license]]
* [[Wikipedia:Comparison of free and open-source software licenses]]
* [[Wikipedia:Comparison of free and open-source software licenses]]
* [https://www.softwarefreedom.org/resources/2008/foss-primer.html A Legal Issues Primer for Open Source and Free Software Projects]
* [https://www.softwarefreedom.org/resources/2008/foss-primer.html A Legal Issues Primer for Open Source and Free Software Projects]
* [https://www.gnu.org/licenses/license-list.html GNU Project - Various Licenses and Comments about Them]
* [https://www.gnu.org/licenses/license-list.html GNU Project - Various Licenses and Comments about Them]
* [https://www.debian.org/legal/licenses/ Debian - License information]
* [https://www.debian.org/legal/licenses/ Debian - License information]
* [http://www.opensource.org/licenses/alphabetical Open Source Initiative - Licenses by Name]
* [https://www.opensource.org/licenses/alphabetical Open Source Initiative - Licenses by Name]


=== groups ===
=== groups ===
Line 142: Line 137:
== Dependencies ==
== Dependencies ==


{{Note|Additional architecture-specific arrays can be added by appending an underscore and the architecture name, e.g. {{ic|1=optdepends_x86_64=()}}.
{{Note|Additional architecture-specific arrays can be added by appending an underscore and the architecture name, e.g. {{ic|1=optdepends_x86_64=()}}.}}
}}


=== depends ===
=== depends ===
Line 149: Line 143:
An array of packages that must be installed for the software to build '''and''' run. Dependencies defined inside the {{ic|package()}} function are only required to run the software.
An array of packages that must be installed for the software to build '''and''' run. Dependencies defined inside the {{ic|package()}} function are only required to run the software.


Version restrictions can be specified with comparison operators, e.g. {{ic|1=depends=('foobar>=1.8.0')}}; if multiple restrictions are needed, the dependency can be repeated for each, e.g. {{ic|1=depends=('foobar>=1.8.0' 'foobar<2.0.0')}}.  
Version restrictions can be specified with comparison operators, e.g. {{ic|1=depends=('foobar>=1.8.0')}}; if multiple restrictions are needed, the dependency can be repeated for each, e.g. {{ic|1=depends=('foobar>=1.8.0' 'foobar<2.0.0')}}.
 
{{Merge|Arch package guidelines|The PKGBUILD format does not enforce a packaging policy.}}


The {{ic|depends}} array should list all direct first level dependencies even when some are already declared transitively. For instance, if a package ''foo'' depends on both ''bar'' and ''baz'', and the ''bar'' package depends in turn on ''baz'' too, it will ultimately lead to undesired behavior if ''bar'' stops pulling in ''baz''. Pacman will not enforce the installation of ''baz'' on systems which newly install the ''foo'' package, or have cleaned up orphans, and ''foo'' will crash at runtime or otherwise misbehave.
The {{ic|depends}} array should list all direct first level dependencies even when some are already declared transitively. For instance, if a package ''foo'' depends on both ''bar'' and ''baz'', and the ''bar'' package depends in turn on ''baz'' too, it will ultimately lead to undesired behavior if ''bar'' stops pulling in ''baz''. Pacman will not enforce the installation of ''baz'' on systems which newly install the ''foo'' package, or have cleaned up orphans, and ''foo'' will crash at runtime or otherwise misbehave.


In some cases this is not necessary and may or may not be listed, for example {{Pkg|glibc}} cannot be uninstalled as every system needs some C library, or {{Pkg|python}} for a package that already depends on another ''python-'' module, as the second module must per definition depend on ''python'' and cannot ever stop pulling it in as a dependency.  
In some cases this is not necessary and may or may not be listed, for example {{Pkg|glibc}} cannot be uninstalled as every system needs some C library, or {{Pkg|python}} for a package that already depends on another ''python-'' module, as the second module must per definition depend on ''python'' and cannot ever stop pulling it in as a dependency.
 
Dependencies should normally include the requirements for building all optional features of a package. Alternatively, any feature whose dependencies are not included should be explicitly disabled via a configure option. Failure to do this can lead to packages with "[[Gentoo:Project:Quality Assurance/Automagic dependencies|automagic dependencies]]" build-time optional features that are unpredictably enabled due to transitive dependencies or unrelated software installed on the build machine, but which are not reflected in the package dependencies.
 
If the dependency name appears to be a library, e.g. {{ic|1=depends=('libfoobar.so')}}, ''makepkg'' will try to find a binary that depends on the library in the built package and append the [[Wikipedia:soname|soname]] version needed by the binary. Appending the version yourself disables automatic detection, e.g. {{ic|1=depends=('libfoobar.so=2')}}.
 
=== makedepends ===
 
An array of packages that are '''only''' required to build the package. The minimum dependency version can be specified in the same format as in the {{ic|depends}} array. The packages in the {{ic|depends}} array are implicitly required to build the package, they should not be duplicated here.
 
{{Note|
* The package {{Pkg|base-devel}} is assumed to be already installed when building with ''makepkg''. Dependencies of this package '''should not''' be included in {{ic|makedepends}} array.
* If using [[VCS package guidelines#VCS sources|VCS sources]], do not forget to include the appropriate VCS tool ({{Pkg|git}}, {{Pkg|subversion}}, {{Pkg|cvs}}, ...).
}}
 
{{Tip|You can use {{ic|pactree -rsud1 ''package'' {{!}} grep base-devel}} to check whether a particular package is a direct dependency of {{Pkg|base-devel}} (requires {{Pkg|pacman-contrib}}).}}
 
=== checkdepends ===


Dependencies should normally include the requirements for building all optional features of a package. Alternatively, any feature whose dependencies are not included should be explicitly disabled via a configure option. Failure to do this can lead to packages with "[https://wiki.gentoo.org/wiki/Project:Quality_Assurance/Automagic_dependencies automagic dependencies]" build-time optional features that are unpredictably enabled due to transitive dependencies or unrelated software installed on the build machine, but which are not reflected in the package dependencies.
An array of packages that the software depends on to run its test suite, but are not needed at runtime. Packages in this list follow the same format as {{ic|depends}}. These dependencies are only considered when the [[Creating packages#check()|check()]] function is present and is to be run by ''makepkg''.


If the dependency name appears to be a library, e.g. {{ic|1=depends=('libfoobar.so')}}, makepkg will try to find a binary that depends on the library in the built package and append the soname version needed by the binary. Appending the version yourself disables automatic detection, e.g. {{ic|1=depends=('libfoobar.so=2')}}.
{{Note|The package {{Pkg|base-devel}} is assumed to be already installed when building with ''makepkg''. Dependencies of this package '''should not''' be included in {{ic|checkdepends}} array.}}


=== optdepends ===
=== optdepends ===


An array of packages that are not needed for the software to function, but provide additional features. This may imply that not all executables provided by a package will function without the respective optdepends.[https://lists.archlinux.org/pipermail/arch-general/2014-December/038124.html] If the software works on multiple alternative dependencies, all of them can be listed here, instead of the {{ic|depends}} array.
An array of packages that are not needed for the software to function, but provide additional features. This may imply that not all executables provided by a package will function without the respective optdepends.[https://lists.archlinux.org/archives/list/arch-general@lists.archlinux.org/message/ZFBCD2NFFBSOZBI22AYZYHH2PDRCLJWF/] If the software works on multiple alternative dependencies, all of them can be listed here, instead of the {{ic|depends}} array.


A short description of the extra functionality each optdepend provides should also be noted:
A short description of the extra functionality each optdepend provides should also be noted:
Line 172: Line 185:
             'libjpeg: JPEG images support'
             'libjpeg: JPEG images support'
             'libpng: PNG images support')
             'libpng: PNG images support')
=== makedepends ===
An array of packages that are '''only''' required to build the software. The minimum dependency version can be specified in the same format as in the {{ic|depends}} array. The packages in the {{ic|depends}} array are implicitly required to build the package, they should not be duplicated here.
{{Tip|The following can be used to check whether a particular package is either in the {{Grp|base-devel}} group or is pulled in by a member of the group:
<nowiki>$ LC_ALL=C pacman -Si $(pactree -rl ''package'') 2>/dev/null | grep -q "^Groups *:.*base-devel"</nowiki>
}}
{{Note|The group {{Grp|base-devel}} is assumed to be already installed when building with ''makepkg''. Members of this group '''should not''' be included in {{ic|makedepends}} array.}}
=== checkdepends ===
An array of packages that the software depends on to run its test suite, but are not needed at runtime. Packages in this list follow the same format as {{ic|depends}}. These dependencies are only considered when the [[Creating packages#check()|check()]] function is present and is to be run by makepkg.
{{Note|The group {{Grp|base-devel}} is assumed to be already installed when building with ''makepkg''. Members of this group '''should not''' be included in {{ic|checkdepends}} array.}}


== Package relations ==
== Package relations ==
Line 197: Line 192:
=== provides ===
=== provides ===


An array of additional packages that the software provides the features of (or a virtual package such as {{ic|cron}} or {{ic|sh}}). Packages providing the same item can be installed side-by-side, unless at least one of them uses a {{ic|conflicts}} array.
An array of additional packages that the software provides the features of, including [[Pacman#Virtual packages|virtual packages]] such as {{ic|cron}} or {{ic|sh}} and [[Arch package guidelines#Package relations|all external shared libraries]]. Packages providing the same item can be installed side-by-side, unless at least one of them uses a {{ic|conflicts}} array.


{{Note|The version that the package provides should be mentioned ({{ic|pkgver}} and potentially the {{ic|pkgrel}}), in case packages referencing the software require one. For instance, a modified ''qt'' package version 3.3.8, named ''qt-foobar'', should use {{ic|1=provides=('qt=3.3.8')}}; omitting the version number would cause the dependencies that require a specific version of ''qt'' to fail. Do not add {{ic|pkgname}} to the {{ic|provides}} array, as it is done automatically.}}
{{Note|The version that the package provides should be mentioned ({{ic|pkgver}} and potentially the {{ic|pkgrel}}), in case packages referencing the software require one. For instance, a modified ''qt'' package version 3.3.8, named ''qt-foobar'', should use {{ic|1=provides=('qt=3.3.8')}}; omitting the version number would cause the dependencies that require a specific version of ''qt'' to fail. Do not add {{ic|pkgname}} to the {{ic|provides}} array, as it is done automatically.}}
Line 205: Line 200:
An array of packages that conflict with, or cause problems with the package, if installed. All these packages and packages providing this item will need to be removed. The version properties of the conflicting packages can also be specified in the same format as the {{ic|depends}} array.
An array of packages that conflict with, or cause problems with the package, if installed. All these packages and packages providing this item will need to be removed. The version properties of the conflicting packages can also be specified in the same format as the {{ic|depends}} array.


This means when you write a package for which an alternate version is available (be it in the official repositories or in the [[AUR]]) and your package conflicts that version, you need to put the other versions in your {{ic|conflicts}} array as well.
Note that conflicts are checked against {{ic|pkgname}} as well as names specified in the {{ic|provides}} array. Hence, if your package {{ic|provides}} a {{ic|''foo''}} feature, specifying {{ic|''foo''}} in the {{ic|conflicts}} array will cause a conflict between your package and all other packages that contain {{ic|''foo''}} in their {{ic|provides}} array (i.e., you do not need to specify all those conflicting package names in your {{ic|conflicts}} array). Let us take a concrete example:


However, there is an exception to this rule. Defining conflicting packages in all directions is not always applicable especially if all these packages are maintained by different people. Indeed, having to contact all package maintainers of packages conflicting with your own version and ask them to include your package name in their {{ic|conflicts}} array is a cumbersome process.
* {{Pkg|netbeans}} implicitly provides {{ic|netbeans}} as the {{ic|pkgname}} itself
* {{AUR|netbeans-cpp}}{{Broken package link|package not found}} provides {{ic|netbeans}} and conflicts with {{ic|netbeans}}
This is why, in this context, if your package {{ic|provides}} a feature and another package {{ic|provides}} the same feature, you do not need to specify that conflicting package in your {{ic|conflicts}} array. Let us take a concrete example:
* {{AUR|netbeans-php}}{{Broken package link|package not found}} provides {{ic|netbeans}} and conflicts with {{ic|netbeans}}, but does not need to explicitly conflict with {{AUR|netbeans-cpp}}{{Broken package link|package not found}} since packages providing the same feature are implicitly in conflict.
 
* {{pkg|netbeans}} implicitly provides {{ic|netbeans}} as the {{ic|pkgname}} itself
When packages provide the same feature via the {{ic|provides}} array, there is a difference between explicitly adding the alternative package to the {{ic|conflicts}} array and not adding it. If the {{ic|conflicts}} array is explicitly declared the two packages providing the same feature will be considered as ''alternative''; if the {{ic|conflicts}} array is missing the two packages providing the same feature will be considered as ''possibly cohabiting''. Packagers should always ignore the content of the {{ic|provides}} variable in deciding whether to declare a {{ic|conflicts}} variable or not.
* {{aur|netbeans-javase}} provides {{ic|netbeans}} and conflicts with {{ic|netbeans}}
* {{aur|netbeans-php}} provides {{ic|netbeans}} and conflicts with {{ic|netbeans}} but does not need to conflict with {{aur|netbeans-javase}} since pacman is smart enough to figure out these packages are incompatible as they provide the same feature and are in conflict with it.
:The same applies in the reverse order: {{aur|netbeans-javase}} does not need to conflict with {{aur|netbeans-php}}, because they provide the same feature.


=== replaces ===
=== replaces ===


An array of obsolete packages that are replaced by the package, e.g. {{pkg|wireshark-qt}} uses {{ic|1=replaces=('wireshark')}}. When syncing, ''pacman'' will immediately replace an installed package upon encountering another package with the matching {{ic|replaces}} in the repositories. If providing an alternate version of an already existing package or uploading to the AUR, use the {{ic|conflicts}} and {{ic|provides}} arrays, which are only evaluated when actually installing the conflicting package.
An array of obsolete packages that are replaced by the package, e.g. {{Pkg|wireshark-qt}} uses {{ic|1=replaces=('wireshark')}}. When syncing, ''pacman'' will immediately replace an installed package upon encountering another package with the matching {{ic|replaces}} in the repositories. If providing an alternate version of an already existing package or uploading to the AUR, use the {{ic|conflicts}} and {{ic|provides}} arrays, which are only evaluated when actually installing the conflicting package.


== Others ==
== Others ==
Line 228: Line 220:
Files in this array should use '''relative''' paths without the leading slash ({{ic|/}}) (e.g. {{ic|etc/pacman.conf}}, instead of {{ic|/etc/pacman.conf}}).
Files in this array should use '''relative''' paths without the leading slash ({{ic|/}}) (e.g. {{ic|etc/pacman.conf}}, instead of {{ic|/etc/pacman.conf}}).


When updating, new versions may be saved as {{ic|file.pacnew}} to avoid overwriting a file which already exists and was previously modified by the user. Similarly, when the package is removed, user-modified files will be preserved as {{ic|file.pacsave}} unless the package was removed with the {{ic|pacman -Rn}} command.
When updating, new versions may be saved as {{ic|''file''.pacnew}} to avoid overwriting a file which already exists and was previously modified by the user. Similarly, when the package is removed, user-modified files will be preserved as {{ic|''file''.pacsave}} unless the package was removed with the {{ic|pacman -Rn}} command.


See also [[Pacnew and Pacsave files]].
See also [[Pacnew and Pacsave files]].
Line 236: Line 228:
This array allows overriding some of the default behavior of ''makepkg'', defined in {{ic|/etc/makepkg.conf}}. To set an option, include the name in the array. To disable an option, place an '''{{ic|!}}''' before it.
This array allows overriding some of the default behavior of ''makepkg'', defined in {{ic|/etc/makepkg.conf}}. To set an option, include the name in the array. To disable an option, place an '''{{ic|!}}''' before it.


The full list of the available options can be found in {{man|5|PKGBUILD}}.
The full list of the available options can be found in {{man|5|PKGBUILD|OPTIONS AND DIRECTIVES}}.


=== install ===
=== install ===


The name of the ''.install'' script to be included in the package. This should be the same as {{ic|pkgname}}. ''pacman'' has the ability to store and execute a package-specific script when it installs, removes or upgrades a package. The script contains the following functions which run at different times:
The name of the ''.install'' script to be included in the package.
 
''pacman'' has the ability to store and execute a package-specific script when it installs, removes or upgrades a package. The script contains the following functions which run at different times:


* {{ic|pre_install}} — The script is run right before files are extracted. One argument is passed: new package version.
* {{ic|pre_install}} — The script is run right before files are extracted. One argument is passed: new package version.
* {{ic|post_install}} — The script is run right after files are extracted. One argument is passed: new package version.
* {{ic|post_install}} — The script is run right after files are extracted. Any additional notes that should be printed after the package is installed should be located here. One argument is passed: new package version.
* {{ic|pre_upgrade}} — The script is run right before files are extracted. Two arguments are passed in the following order: new package version, old package version.
* {{ic|pre_upgrade}} — The script is run right before files are extracted. Two arguments are passed in the following order: new package version, old package version.
* {{ic|post_upgrade}} — The script is run right after files are extracted. Two arguments are passed in the following order: new package version, old package version.
* {{ic|post_upgrade}} — The script is run right after files are extracted. Two arguments are passed in the following order: new package version, old package version.
Line 252: Line 246:


{{Tip|
{{Tip|
* A prototype ''.install'' is provided at [https://projects.archlinux.org/pacman.git/plain/proto/proto.install /usr/share/pacman/proto.install].
* A prototype ''.install'' is provided at [https://gitlab.archlinux.org/pacman/pacman/raw/master/proto/proto.install /usr/share/pacman/proto.install].
* [[pacman#Hooks]] provide similar functionality.
* [[pacman#Hooks]] provide similar functionality.
}}
}}
Line 272: Line 266:
Files can also be supplied in the same directory where the {{ic|PKGBUILD}} is located, and their names added to this array. Before the actual build process starts, all the files referenced in this array will be downloaded or checked for existence, and ''makepkg'' will not proceed if any is missing.
Files can also be supplied in the same directory where the {{ic|PKGBUILD}} is located, and their names added to this array. Before the actual build process starts, all the files referenced in this array will be downloaded or checked for existence, and ''makepkg'' will not proceed if any is missing.


''.install'' files are recognized automatically by ''makepkg'' and should not be included in the source array. Files in the source array with extensions ''.sig'', ''.sign'', or ''.asc'' are recognized by ''makepkg'' as PGP signatures and will be automatically used to verify the integrity of the corresponding source file.
''.install'' files are recognized automatically by ''makepkg'' and should not be included in the {{ic|source}} array. Files in the {{ic|source}} array with extensions ''.sig'', ''.sign'', or ''.asc'' are recognized by ''makepkg'' as PGP signatures and will be automatically used to verify the integrity of the corresponding source file.


{{Warning|The downloaded source filename must be unique because the [[makepkg#Package_output|SRCDEST]] directory can be the same for all packages. For instance, using the version number of the project as a filename potentially conflicts with other projects with the same version number. In this case, the alternative unique filename to be used is provided with the syntax {{ic|1=source=(<nowiki>'</nowiki>''unique_package_name'''''::'''''file_uri''<nowiki>'</nowiki>)}}; e.g. {{ic|<nowiki>source=("$pkgname-$pkgver.tar.gz::https://github.com/coder/program/archive/v$pkgver.tar.gz")</nowiki>}}.
{{Warning|The downloaded source filename must be unique because the [[makepkg#Package output|SRCDEST]] directory can be the same for all packages. For instance, using the version number of the project as a filename potentially conflicts with other projects with the same version number. In this case, the alternative unique filename to be used is provided with the syntax {{ic|1=source=('<nowiki/>''unique_package_name'''''::'''''file_uri''<nowiki/>')}}; e.g. {{ic|<nowiki>source=("$pkgname-$pkgver.tar.gz::https://github.com/coder/program/archive/v$pkgver.tar.gz")</nowiki>}}.
}}
}}


{{Tip|
{{Tip|
* Additional architecture-specific arrays can be added by appending an underscore and the architecture name, e.g. {{ic|1=source_x86_64=()}}. There must be a corresponding integrity array with checksums, e.g. {{ic|1=sha256sums_x86_64=()}}.
* Additional architecture-specific arrays can be added by appending an underscore and the architecture name, e.g. {{ic|1=source_x86_64=()}}. There must be a corresponding integrity array with checksums, e.g. {{ic|1=sha256sums_x86_64=()}}.
* Some servers restrict download by filtering the ''User-Agent'' string of the client, this can be circumvented with [[Nonfree applications package guidelines#Custom DLAGENTS|DLAGENTS]].}}
* Some servers restrict download by filtering the ''User-Agent'' string of the client or other types of restrictions, which can be circumvented with [[Nonfree applications package guidelines#Custom DLAGENTS|DLAGENTS]].
* You can use {{ic|file://}} URL to point to a directory or a file in your computer filesystem. For example, a local Git repository can be specified as {{ic|"$pkgname"::"git+file://''/path/to/repository''"}}.
* Magnet link support can be added using {{AUR|transmission-dlagent}} as {{ic|DLAGENT}} and using the {{ic|<nowiki>magnet://</nowiki>}} uri prefix instead of the canonical {{ic|magnet:?}}.
* See {{man|5|PKGBUILD|USING VCS SOURCES}} and [[VCS package guidelines#VCS sources]] for details on VCS specific options, such as targeting a specific Git branch or commit.
}}


=== noextract ===
=== noextract ===
Line 296: Line 294:
To extract ''nothing'', you can do something like this:
To extract ''nothing'', you can do something like this:


* If {{ic|source}} contains only plain URLs without custom file names, strip the source array before the last slash:
* If {{ic|source}} contains only plain URLs without custom file names, strip the {{ic|source}} array before the last slash:
: {{bc|1=noextract=("${source[@]##*/}")}}
: {{bc|1=noextract=("${source[@]##*/}")}}
* If {{ic|source}} contains only entries with custom file names, strip the source array after the {{ic|::}} separator (taken from [https://github.com/archlinux/svntogit-packages/blob/packages/firefox-i18n/trunk/PKGBUILD#L123 firefox-i18n's PKGBUILD]):
* If {{ic|source}} contains only entries with custom file names, strip the {{ic|source}} array after the {{ic|::}} separator (taken from previous version of [https://gitlab.archlinux.org/archlinux/packaging/packages/firefox-i18n/-/blob/46492498ef720353cbb84de5096102de694faf90/PKGBUILD#L132 firefox-i18n's PKGBUILD]):
: {{bc|1=noextract=("${source[@]%%::*}")}}
: {{bc|1=noextract=("${source[@]%%::*}")}}


Line 307: Line 305:
Only full fingerprints are accepted. They must be uppercase and must not contain whitespace characters.
Only full fingerprints are accepted. They must be uppercase and must not contain whitespace characters.


{{Note|You can use {{ic|gpg --list-keys --fingerprint <KEYID>}} to find out the fingerprint of the appropriate key.}}
{{Note|You can use {{ic|gpg --list-keys --fingerprint ''KEYID''}} to find out the fingerprint of the appropriate key.}}


Please read [[makepkg#Signature checking]] for more information.
Please read [[makepkg#Signature checking]] for more information.
Line 315: Line 313:
These variables are arrays whose items are checksum strings that will be used to verify the integrity of the respective files in the [[#source|source]] array. You can also insert {{ic|SKIP}} for a particular file, and its checksum will not be tested.
These variables are arrays whose items are checksum strings that will be used to verify the integrity of the respective files in the [[#source|source]] array. You can also insert {{ic|SKIP}} for a particular file, and its checksum will not be tested.


The checksum type and values should always be those provided by upstream, such as in release announcements. When multiple types are available, the strongest checksum is to be preferred: {{ic|sha256}} over {{ic|sha1}}, and {{ic|sha1}} over {{ic|md5}}. This best ensures the integrity of the downloaded files, from upstream's announcement to package building.
The checksum type and values should always be those provided by upstream, such as in release announcements. When multiple types are available, the strongest checksum is to be preferred: {{ic|b2}} over {{ic|sha512}}, {{ic|sha512}} over {{ic|sha384}}, {{ic|sha384}} over {{ic|sha256}}, {{ic|sha256}} over {{ic|sha224}}, {{ic|sha224}} over {{ic|sha1}}, {{ic|sha1}} over {{ic|md5}}, and {{ic|md5}} over {{ic|ck}}. This best ensures the integrity of the downloaded files, from upstream's announcement to package building.


{{Note|Additionally, when upstream makes [[w:Digital signature|digital signatures]] available, the signature files should be added to the [[#source|source]] array and the PGP key fingerprint to the [[#validpgpkeys|validpgpkeys]] array. This allows authentication of the files at build time.}}
{{Note|Additionally, when upstream makes [[Wikipedia:Digital signature|digital signatures]] available, the signature files should be added to the [[#source|source]] array and the PGP key fingerprint to the [[#validpgpkeys|validpgpkeys]] array. This allows authentication of the files at build time.}}


The values for these variables can be auto-generated by [[makepkg]]'s {{ic|-g}}/{{ic|--geninteg}} option, then commonly appended with {{ic|makepkg -g >> PKGBUILD}}. The {{ic|updpkgsums}} command from {{Pkg|pacman-contrib}} is able to update the variables wherever they are in the {{ic|PKGBUILD}}. Both tools will use the variable that is already set in the {{ic|PKGBUILD}}, or fall back to {{ic|md5sums}} if none is set.
The values for these variables can be auto-generated by [[makepkg]]'s {{ic|-g}}/{{ic|--geninteg}} option, then commonly appended with {{ic|makepkg -g >> PKGBUILD}}. The {{man|8|updpkgsums}} command from {{Pkg|pacman-contrib}} is able to update the variables wherever they are in the {{ic|PKGBUILD}}. Both tools will use the variable that is already set in the {{ic|PKGBUILD}}, or fall back to {{ic|md5sums}} if none is set.


The file integrity checks to use can be set up with the {{ic|INTEGRITY_CHECK}} option in {{ic|/etc/makepkg.conf}}. See {{man|5|makepkg.conf}}.
The file integrity checks to use can be set up with the {{ic|INTEGRITY_CHECK}} option in {{ic|/etc/makepkg.conf}}. See {{man|5|makepkg.conf}}.


{{Note|Additional architecture-specific arrays can be added by appending an underscore and the architecture name, e.g. {{ic|1=sha256sums_x86_64=()}}.}}
{{Note|Additional architecture-specific arrays can be added by appending an underscore and the architecture name, e.g. {{ic|1=sha256sums_x86_64=()}}.}}
=== cksums ===
An array [[Wikipedia:Cyclic redundancy check|CRC32]] checksums (from UNIX-standard [[Wikipedia:cksum|cksum]]) of the files listed in the {{ic|source}} array.


=== md5sums ===
=== md5sums ===
Line 343: Line 345:
=== b2sums ===
=== b2sums ===


An array of [[Wikipedia:BLAKE_(hash_function)#BLAKE2|BLAKE2]] checksums with digest size of 512 bits.
An array of [[Wikipedia:BLAKE (hash function)#BLAKE2|BLAKE2]] checksums with digest size of 512 bits.


== See also ==
== See also ==


* {{man|5|PKGBUILD}} manual page
* {{man|5|PKGBUILD}} manual page
* [https://projects.archlinux.org/pacman.git/plain/proto/PKGBUILD.proto Example PKGBUILD file]
* [https://gitlab.archlinux.org/pacman/pacman/raw/master/proto/PKGBUILD.proto Example PKGBUILD file]

Latest revision as of 08:05, 14 April 2024

This article discusses variables definable by the maintainer in a PKGBUILD. For information on the PKGBUILD functions and creating packages in general, refer to Creating packages. Also read PKGBUILD(5).

A PKGBUILD is a shell script containing the build information required by Arch Linux packages.

Packages in Arch Linux are built using the makepkg utility. When makepkg is run, it searches for a PKGBUILD file in the current directory and follows the instructions therein to either compile or otherwise acquire the files to build a package archive (pkgname.pkg.tar.zst). The resulting package contains binary files and installation instructions, readily installable with pacman.

Mandatory variables are pkgname, pkgver, pkgrel, and arch. license is not strictly necessary to build a package, but is recommended for any PKGBUILD shared with others, as makepkg will produce a warning if not present.

It is a common practice to define the variables in the PKGBUILD in the same order as given here. However, this is not mandatory, as long as correct Bash syntax is used.

Tip:
  • Use namcap to check PKGBUILDs for common packaging mistakes.
  • termux-language-serverAUR provides a language server for PKGBUILD, makepkg.conf, etc.

Package name

pkgbase

When building regular packages, this variable should not be explicitly declared in the PKGBUILD: its value defaults to that of #pkgname.

When building a split package, this variable can be used to explicitly specify the name to be used to refer to the group of packages in the output of makepkg and in the naming of source-only tarballs. The value is not allowed to begin with a hyphen. If not specified, the value will default to the first element in the pkgname array.

All options and directives for split packages default to the global values given in the PKGBUILD. Nevertheless, the following ones can be overridden within each split package’s packaging function: #pkgdesc, #arch, #url, #license, #groups, #depends, #optdepends, #provides, #conflicts, #replaces, #backup, #options, #install, and #changelog.

pkgname

Either the name of the package, e.g. pkgname='foo', or, for split packages, an array of names, e.g. pkgname=('foo' 'bar'). Package names should only consist of lowercase alphanumerics and the following characters: @._+- (at symbol, dot, underscore, plus, hyphen). Names are not allowed to start with hyphens or dots. For the sake of consistency, pkgname should match the name of the source tarball of the software: for instance, if the software is in foobar-2.5.tar.gz, use pkgname=foobar.

Version

pkgver

The version of the package. This should be the same as the version published by the author of the upstream software. It can contain letters, numbers, periods and underscores, but not a hyphen (-). If the author of the software uses one, replace it with an underscore (_). If the pkgver variable is used later in the PKGBUILD, then the underscore can easily be substituted for a hyphen, e.g. source=("$pkgname-${pkgver//_/-}.tar.gz").

Note: If upstream uses a timestamp versioning such as 30102014, ensure to use the reversed date, i.e. 20141030 (ISO 8601 format). Otherwise it will not appear as a newer version.
Tip:

pkgrel

The release number. This is usually a positive integer number that allows to differentiate between consecutive builds of the same version of a package. As fixes and additional features are added to the PKGBUILD that influence the resulting package, the pkgrel should be incremented by 1. When a new version of the software is released, this value must be reset to 1. In exceptional cases other formats can be found in use, such as major.minor.

epoch

Warning: epoch should only be used when absolutely required to do so.

Used to force the package to be seen as newer than any previous version with a lower epoch. This value is required to be a non-negative integer; the default is 0. It is used when the version numbering scheme of a package changes (or is alphanumeric), breaking normal version comparison logic. For example:

pkgver=5.13
pkgrel=2
epoch=1
1:5.13-2

See pacman(8) for more information on version comparisons.

Generic

pkgdesc

The description of the package. This is recommended to be 80 characters or less and should not include the package name in a self-referencing way, unless the application name differs from the package name. For example, use pkgdesc="Text editor for X11" instead of pkgdesc="Nedit is a text editor for X11".

Also it is important to use keywords wisely to increase the chances of appearing in relevant search queries.

arch

An array of architectures that the PKGBUILD is intended to build and work on. Arch officially supports only x86_64, but other projects may support other architectures. For example, Arch Linux 32 provides support for i686 and pentium4 and Arch Linux ARM provides support for armv7h (armv7 hardfloat) and aarch64 (armv8 64-bit).

There are two types of values the array can use:

  • arch=('any') indicates the package can be built once on any architecture, and once built, is architecture-independent in its compiled state (usually shell scripts, fonts, themes, many types of extensions, etc.).
  • arch=(...) with one or more architectures (but not any) indicates the package can be compiled for any of the specified architectures, but is architecture-specific once compiled. For these packages, specify all architectures that the PKGBUILD officially supports. For official repository and AUR packages, this means arch=('x86_64'). Optionally, AUR packages may choose to additionally support other known working architectures.

The target architecture can be accessed with the variable $CARCH during a build.

url

The URL of the official site of the software being packaged.

license

This article or section needs expansion.

Reason: Add more details from [1]. (Discuss in Talk:PKGBUILD)
Note: Arch Linux is currently undergoing a transition to SPDX style identifiers. Some issues may still require ironing out. This section focuses on the SPDX format. If you encounter any trouble, please report them and discuss with the community.

The license under which the software is distributed. Arch Linux uses SPDX license identifiers. Each license must have a corresponding entry in /usr/share/licenses/.

For common licenses (like 'GPL-3.0-or-later'), package licenses delivers all the corresponding files. The package is installed by default, as it is a dependency of base meta package, and the files may be found in /usr/share/licenses/spdx/. Simply refer to the license using its SPDX license identifier from the list of SPDX identifiers.

License families like BSD or MIT are, strictly speaking, not a single license and each instance requires a separate license file. In license variable refer to them using a common SPDX identifier (e.g. 'BSD-3-Clause' or 'MIT'), but then provide the corresponding file as if it was a custom license.

For custom licenses the identifier should be either LicenseRef-license-name or custom:license-name, if they are not covered by the common families mentioned above. The corresponding license text must be placed in directory /usr/share/licenses/pkgname. To install the file a following code snippet may be used in package() section:

install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"

Combining multiple licenses or adding exceptions should follow the SPDX syntax. For example a package released under either GNU/GPL 2.0 or GNU/LGPL 2.1 could use 'GPL-2.0-or-later OR LGPL-2.1-or-later', while a package released under Apache 2.0 with LLVM exception: 'Apache-2.0 WITH LLVM-exception'. Note that this must be a single string, so the entire expression has to be enclosed in quotes. As for November 2023 SPDX list of exceptions is limited, so usually the custom license route must be used.

If issues are encountered with SPDX identifiers, during the transitional period using old identifiers - names of the directories in /usr/share/licenses/common - is acceptable.

See also Nonfree applications package guidelines.

Additional information and perspectives on free and open source software licenses may be found on the following pages:

groups

The group the package belongs in. For instance, when installing plasma, it installs all packages belonging in that group.

Dependencies

Note: Additional architecture-specific arrays can be added by appending an underscore and the architecture name, e.g. optdepends_x86_64=().

depends

An array of packages that must be installed for the software to build and run. Dependencies defined inside the package() function are only required to run the software.

Version restrictions can be specified with comparison operators, e.g. depends=('foobar>=1.8.0'); if multiple restrictions are needed, the dependency can be repeated for each, e.g. depends=('foobar>=1.8.0' 'foobar<2.0.0').

This article or section is a candidate for merging with Arch package guidelines.

Notes: The PKGBUILD format does not enforce a packaging policy. (Discuss in Talk:PKGBUILD)

The depends array should list all direct first level dependencies even when some are already declared transitively. For instance, if a package foo depends on both bar and baz, and the bar package depends in turn on baz too, it will ultimately lead to undesired behavior if bar stops pulling in baz. Pacman will not enforce the installation of baz on systems which newly install the foo package, or have cleaned up orphans, and foo will crash at runtime or otherwise misbehave.

In some cases this is not necessary and may or may not be listed, for example glibc cannot be uninstalled as every system needs some C library, or python for a package that already depends on another python- module, as the second module must per definition depend on python and cannot ever stop pulling it in as a dependency.

Dependencies should normally include the requirements for building all optional features of a package. Alternatively, any feature whose dependencies are not included should be explicitly disabled via a configure option. Failure to do this can lead to packages with "automagic dependencies" build-time optional features that are unpredictably enabled due to transitive dependencies or unrelated software installed on the build machine, but which are not reflected in the package dependencies.

If the dependency name appears to be a library, e.g. depends=('libfoobar.so'), makepkg will try to find a binary that depends on the library in the built package and append the soname version needed by the binary. Appending the version yourself disables automatic detection, e.g. depends=('libfoobar.so=2').

makedepends

An array of packages that are only required to build the package. The minimum dependency version can be specified in the same format as in the depends array. The packages in the depends array are implicitly required to build the package, they should not be duplicated here.

Note:
  • The package base-devel is assumed to be already installed when building with makepkg. Dependencies of this package should not be included in makedepends array.
  • If using VCS sources, do not forget to include the appropriate VCS tool (git, subversion, cvs, ...).
Tip: You can use pactree -rsud1 package | grep base-devel to check whether a particular package is a direct dependency of base-devel (requires pacman-contrib).

checkdepends

An array of packages that the software depends on to run its test suite, but are not needed at runtime. Packages in this list follow the same format as depends. These dependencies are only considered when the check() function is present and is to be run by makepkg.

Note: The package base-devel is assumed to be already installed when building with makepkg. Dependencies of this package should not be included in checkdepends array.

optdepends

An array of packages that are not needed for the software to function, but provide additional features. This may imply that not all executables provided by a package will function without the respective optdepends.[2] If the software works on multiple alternative dependencies, all of them can be listed here, instead of the depends array.

A short description of the extra functionality each optdepend provides should also be noted:

optdepends=('cups: printing support'
            'sane: scanners support'
            'libgphoto2: digital cameras support'
            'alsa-lib: sound support'
            'giflib: GIF images support'
            'libjpeg: JPEG images support'
            'libpng: PNG images support')

Package relations

Note: Additional architecture-specific arrays can be added by appending an underscore and the architecture name, e.g. conflicts_x86_64=().

provides

An array of additional packages that the software provides the features of, including virtual packages such as cron or sh and all external shared libraries. Packages providing the same item can be installed side-by-side, unless at least one of them uses a conflicts array.

Note: The version that the package provides should be mentioned (pkgver and potentially the pkgrel), in case packages referencing the software require one. For instance, a modified qt package version 3.3.8, named qt-foobar, should use provides=('qt=3.3.8'); omitting the version number would cause the dependencies that require a specific version of qt to fail. Do not add pkgname to the provides array, as it is done automatically.

conflicts

An array of packages that conflict with, or cause problems with the package, if installed. All these packages and packages providing this item will need to be removed. The version properties of the conflicting packages can also be specified in the same format as the depends array.

Note that conflicts are checked against pkgname as well as names specified in the provides array. Hence, if your package provides a foo feature, specifying foo in the conflicts array will cause a conflict between your package and all other packages that contain foo in their provides array (i.e., you do not need to specify all those conflicting package names in your conflicts array). Let us take a concrete example:

  • netbeans implicitly provides netbeans as the pkgname itself
  • netbeans-cppAUR[broken link: package not found] provides netbeans and conflicts with netbeans
  • netbeans-phpAUR[broken link: package not found] provides netbeans and conflicts with netbeans, but does not need to explicitly conflict with netbeans-cppAUR[broken link: package not found] since packages providing the same feature are implicitly in conflict.

When packages provide the same feature via the provides array, there is a difference between explicitly adding the alternative package to the conflicts array and not adding it. If the conflicts array is explicitly declared the two packages providing the same feature will be considered as alternative; if the conflicts array is missing the two packages providing the same feature will be considered as possibly cohabiting. Packagers should always ignore the content of the provides variable in deciding whether to declare a conflicts variable or not.

replaces

An array of obsolete packages that are replaced by the package, e.g. wireshark-qt uses replaces=('wireshark'). When syncing, pacman will immediately replace an installed package upon encountering another package with the matching replaces in the repositories. If providing an alternate version of an already existing package or uploading to the AUR, use the conflicts and provides arrays, which are only evaluated when actually installing the conflicting package.

Others

backup

An array of files that can contain user-made changes and should be preserved during upgrade or removal of a package, primarily intended for configuration files in /etc.

Files in this array should use relative paths without the leading slash (/) (e.g. etc/pacman.conf, instead of /etc/pacman.conf).

When updating, new versions may be saved as file.pacnew to avoid overwriting a file which already exists and was previously modified by the user. Similarly, when the package is removed, user-modified files will be preserved as file.pacsave unless the package was removed with the pacman -Rn command.

See also Pacnew and Pacsave files.

options

This array allows overriding some of the default behavior of makepkg, defined in /etc/makepkg.conf. To set an option, include the name in the array. To disable an option, place an ! before it.

The full list of the available options can be found in PKGBUILD(5) § OPTIONS AND DIRECTIVES.

install

The name of the .install script to be included in the package.

pacman has the ability to store and execute a package-specific script when it installs, removes or upgrades a package. The script contains the following functions which run at different times:

  • pre_install — The script is run right before files are extracted. One argument is passed: new package version.
  • post_install — The script is run right after files are extracted. Any additional notes that should be printed after the package is installed should be located here. One argument is passed: new package version.
  • pre_upgrade — The script is run right before files are extracted. Two arguments are passed in the following order: new package version, old package version.
  • post_upgrade — The script is run right after files are extracted. Two arguments are passed in the following order: new package version, old package version.
  • pre_remove — The script is run right before files are removed. One argument is passed: old package version.
  • post_remove — The script is run right after files are removed. One argument is passed: old package version.

Each function is run chrooted inside the pacman install directory. See this thread.

Tip:
Note: Do not end the script with exit. This would prevent the contained functions from executing.

changelog

The name of the package changelog. To view changelogs for installed packages (that have this file):

$ pacman -Qc pkgname

Sources

source

An array of files needed to build the package. It must contain the location of the software source, which in most cases is a full HTTP or FTP URL. The previously set variables pkgname and pkgver can be used effectively here; e.g. source=("https://example.com/$pkgname-$pkgver.tar.gz").

Files can also be supplied in the same directory where the PKGBUILD is located, and their names added to this array. Before the actual build process starts, all the files referenced in this array will be downloaded or checked for existence, and makepkg will not proceed if any is missing.

.install files are recognized automatically by makepkg and should not be included in the source array. Files in the source array with extensions .sig, .sign, or .asc are recognized by makepkg as PGP signatures and will be automatically used to verify the integrity of the corresponding source file.

Warning: The downloaded source filename must be unique because the SRCDEST directory can be the same for all packages. For instance, using the version number of the project as a filename potentially conflicts with other projects with the same version number. In this case, the alternative unique filename to be used is provided with the syntax source=('unique_package_name::file_uri'); e.g. source=("$pkgname-$pkgver.tar.gz::https://github.com/coder/program/archive/v$pkgver.tar.gz").
Tip:
  • Additional architecture-specific arrays can be added by appending an underscore and the architecture name, e.g. source_x86_64=(). There must be a corresponding integrity array with checksums, e.g. sha256sums_x86_64=().
  • Some servers restrict download by filtering the User-Agent string of the client or other types of restrictions, which can be circumvented with DLAGENTS.
  • You can use file:// URL to point to a directory or a file in your computer filesystem. For example, a local Git repository can be specified as "$pkgname"::"git+file:///path/to/repository".
  • Magnet link support can be added using transmission-dlagentAUR as DLAGENT and using the magnet:// uri prefix instead of the canonical magnet:?.
  • See PKGBUILD(5) § USING VCS SOURCES and VCS package guidelines#VCS sources for details on VCS specific options, such as targeting a specific Git branch or commit.

noextract

An array of files listed under source, which should not be extracted from their archive format by makepkg. This can be used with archives that cannot be handled by /usr/bin/bsdtar or those that need to be installed as-is. If an alternative unarchiving tool is used (e.g. lrzip), it should be added in the makedepends array and the first line of the prepare() function should extract the source archive manually; for example:

prepare() {
  lrzip -d source.tar.lrz
}

Note that while the source array accepts URLs, noextract is just the file name portion:

source=("http://foo.org/bar/foobar.tar.xz")
noextract=('foobar.tar.xz')

To extract nothing, you can do something like this:

  • If source contains only plain URLs without custom file names, strip the source array before the last slash:
noextract=("${source[@]##*/}")
  • If source contains only entries with custom file names, strip the source array after the :: separator (taken from previous version of firefox-i18n's PKGBUILD):
noextract=("${source[@]%%::*}")

validpgpkeys

An array of PGP fingerprints. If used, makepkg will only accept signatures from the keys listed here and will ignore the trust values from the keyring. If the source file was signed with a subkey, makepkg will still use the primary key for comparison.

Only full fingerprints are accepted. They must be uppercase and must not contain whitespace characters.

Note: You can use gpg --list-keys --fingerprint KEYID to find out the fingerprint of the appropriate key.

Please read makepkg#Signature checking for more information.

Integrity

These variables are arrays whose items are checksum strings that will be used to verify the integrity of the respective files in the source array. You can also insert SKIP for a particular file, and its checksum will not be tested.

The checksum type and values should always be those provided by upstream, such as in release announcements. When multiple types are available, the strongest checksum is to be preferred: b2 over sha512, sha512 over sha384, sha384 over sha256, sha256 over sha224, sha224 over sha1, sha1 over md5, and md5 over ck. This best ensures the integrity of the downloaded files, from upstream's announcement to package building.

Note: Additionally, when upstream makes digital signatures available, the signature files should be added to the source array and the PGP key fingerprint to the validpgpkeys array. This allows authentication of the files at build time.

The values for these variables can be auto-generated by makepkg's -g/--geninteg option, then commonly appended with makepkg -g >> PKGBUILD. The updpkgsums(8) command from pacman-contrib is able to update the variables wherever they are in the PKGBUILD. Both tools will use the variable that is already set in the PKGBUILD, or fall back to md5sums if none is set.

The file integrity checks to use can be set up with the INTEGRITY_CHECK option in /etc/makepkg.conf. See makepkg.conf(5).

Note: Additional architecture-specific arrays can be added by appending an underscore and the architecture name, e.g. sha256sums_x86_64=().

cksums

An array CRC32 checksums (from UNIX-standard cksum) of the files listed in the source array.

md5sums

An array of 128-bit MD5 checksums of the files listed in the source array.

sha1sums

An array of 160-bit SHA-1 checksums of the files listed in the source array.

sha256sums

An array of SHA-2 checksums with digest size of 256 bits.

sha224sums, sha384sums, sha512sums

An array of SHA-2 checksums with digest sizes 224, 384, and 512 bits, respectively. These are less common alternatives to sha256sums.

b2sums

An array of BLAKE2 checksums with digest size of 512 bits.

See also