2007-07-06 16:54:18 -04:00
|
|
|
/////
|
2011-06-22 12:06:34 -04:00
|
|
|
vim:set ts=4 sw=4 syntax=asciidoc noet spell spelllang=en_us:
|
2007-07-06 16:54:18 -04:00
|
|
|
/////
|
2007-07-02 19:22:01 -04:00
|
|
|
PKGBUILD(5)
|
|
|
|
===========
|
|
|
|
|
|
|
|
Name
|
|
|
|
----
|
|
|
|
PKGBUILD - Arch Linux package build description file
|
|
|
|
|
|
|
|
|
2007-07-06 11:07:53 -04:00
|
|
|
Synopsis
|
|
|
|
--------
|
|
|
|
PKGBUILD
|
|
|
|
|
|
|
|
|
2007-07-02 19:22:01 -04:00
|
|
|
Description
|
|
|
|
-----------
|
2011-06-09 17:17:06 -04:00
|
|
|
This manual page describes general rules about PKGBUILDs. Once a
|
2007-07-02 19:22:01 -04:00
|
|
|
PKGBUILD is written, the actual package is built using makepkg and installed
|
|
|
|
with pacman.
|
|
|
|
|
2011-06-09 17:17:06 -04:00
|
|
|
NOTE: An example PKGBUILD, useful for reference, is located in '{pkgdatadir}'
|
|
|
|
along with other example files such as a ChangeLog and an install
|
2010-05-13 19:11:50 -04:00
|
|
|
script. You can copy the provided PKGBUILD.proto file to a new package build
|
|
|
|
directory and make customizations to suit your needs.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
Options and Directives
|
|
|
|
----------------------
|
2008-06-14 12:57:10 -04:00
|
|
|
The following is a list of standard options and directives available for use
|
|
|
|
in a PKGBUILD. These are all understood and interpreted by makepkg, and most
|
2011-06-09 17:17:06 -04:00
|
|
|
of them will be directly transferred to the built package.
|
2008-06-14 12:57:10 -04:00
|
|
|
|
|
|
|
If you need to create any custom variables for use in your build process, it is
|
2011-06-09 17:17:06 -04:00
|
|
|
recommended to prefix their name with an '_' (underscore).
|
2008-06-14 12:57:10 -04:00
|
|
|
This will prevent any possible name clashes with internal makepkg variables.
|
|
|
|
For example, to store the base kernel version in a variable, use something
|
|
|
|
similar to `$_basekernver`.
|
|
|
|
|
2010-06-25 19:16:42 -04:00
|
|
|
*pkgname (array)*::
|
2011-06-09 17:17:06 -04:00
|
|
|
Either the name of the package or an array of names for split packages.
|
2011-06-09 17:17:06 -04:00
|
|
|
Because it will be used in the package filename, this has to be unix-friendly.
|
|
|
|
Members of the array are not allowed to start with hyphens.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*pkgver*::
|
2011-06-09 17:17:06 -04:00
|
|
|
The version of the software as released from the author (e.g., '2.7.1').
|
2011-01-10 14:40:31 -05:00
|
|
|
The variable is not allowed to contain colons or hyphens.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*pkgrel*::
|
2007-10-29 23:25:30 -04:00
|
|
|
This is the release number specific to the Arch Linux release. This
|
2007-07-02 19:22:01 -04:00
|
|
|
allows package maintainers to make updates to the package's configure
|
2011-06-09 17:17:06 -04:00
|
|
|
flags, for example. This is typically set to '1' for each new upstream
|
2011-06-09 17:17:06 -04:00
|
|
|
software release and incremented for intermediate PKGBUILD updates. The
|
2010-06-25 19:16:42 -04:00
|
|
|
variable is not allowed to contain hyphens.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*pkgdesc*::
|
|
|
|
This should be a brief description of the package and its functionality.
|
2011-06-09 17:17:06 -04:00
|
|
|
Try to keep the description to one line of text and not use the package's name.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
2010-10-08 09:52:14 -04:00
|
|
|
*epoch*::
|
|
|
|
Used to force the package to be seen as newer than any previous versions
|
|
|
|
with a lower epoch, even if the version number would normally not trigger
|
|
|
|
such an upgrade. This value is required to be a positive integer; the
|
|
|
|
default value if left unspecified is '0'. This is useful when the version
|
|
|
|
numbering scheme of a package changes (or is alphanumeric), breaking normal
|
|
|
|
version comparison logic. See linkman:pacman[8] for more information on
|
|
|
|
version comparisons.
|
|
|
|
|
2007-07-02 19:22:01 -04:00
|
|
|
*url*::
|
|
|
|
This field contains a URL that is associated with the software being
|
2011-06-09 17:17:06 -04:00
|
|
|
packaged. Typically the project's website.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*license (array)*::
|
|
|
|
This field specifies the license(s) that apply to the package.
|
2011-06-09 17:17:06 -04:00
|
|
|
Commonly used licenses can be found in '/usr/share/licenses/common'. If you
|
2007-07-02 19:22:01 -04:00
|
|
|
see the package's license there, simply reference it in the license
|
2011-06-09 17:17:06 -04:00
|
|
|
field (e.g., `license=('GPL')`). If the package provides a license not
|
2011-06-09 17:17:06 -04:00
|
|
|
available in '/usr/share/licenses/common', then you should include it
|
2009-04-11 12:14:28 -04:00
|
|
|
in the package itself and set `license=('custom')` or
|
|
|
|
`license=('custom:LicenseName')`. The license should be placed in
|
2011-06-09 17:17:06 -04:00
|
|
|
'$pkgdir/usr/share/licenses/$pkgname/' when building the package. If
|
|
|
|
multiple licenses are applicable, list all of them:
|
2009-04-11 12:14:28 -04:00
|
|
|
`license=('GPL' 'FDL')`.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*install*::
|
|
|
|
Specifies a special install script that is to be included in the package.
|
|
|
|
This file should reside in the same directory as the PKGBUILD, and will
|
|
|
|
be copied into the package by makepkg. It does not need to be included
|
2011-10-10 21:18:52 -04:00
|
|
|
in the source array (e.g., `install=$pkgname.install`).
|
2007-07-02 19:22:01 -04:00
|
|
|
|
2009-10-08 10:10:05 -04:00
|
|
|
*changelog*::
|
|
|
|
Specifies a changelog file that is to be included in the package.
|
|
|
|
This file should reside in the same directory as the PKGBUILD, and will
|
|
|
|
be copied into the package by makepkg. It does not need to be included
|
2011-06-09 17:17:06 -04:00
|
|
|
in the source array (e.g., `changelog=$pkgname.changelog`).
|
2009-10-08 10:10:05 -04:00
|
|
|
|
2007-07-02 19:22:01 -04:00
|
|
|
*source (array)*::
|
|
|
|
An array of source files required to build the package. Source files
|
2011-06-09 17:17:06 -04:00
|
|
|
must either reside in the same directory as the PKGBUILD, or be a
|
|
|
|
fully-qualified URL that makepkg can use to download the file.
|
2011-06-09 17:17:06 -04:00
|
|
|
To make the PKGBUILD as useful as possible, use the `$pkgname` and `$pkgver`
|
2011-06-09 17:17:06 -04:00
|
|
|
variables if possible when specifying the download location. Compressed files
|
|
|
|
will be extracted automatically unless found in
|
|
|
|
the noextract array described below.
|
2008-08-23 10:34:42 -04:00
|
|
|
+
|
2011-06-09 17:17:06 -04:00
|
|
|
It is also possible to change the name of the downloaded file, which is helpful
|
2008-08-23 10:34:42 -04:00
|
|
|
with weird URLs and for handling multiple source files with the same
|
2009-04-11 12:14:28 -04:00
|
|
|
name. The syntax is: `source=('filename::url')`.
|
2011-10-10 23:03:36 -04:00
|
|
|
+
|
2011-11-14 19:58:06 -05:00
|
|
|
Files in the source array with extensions `.sig`, `.sign` or `.asc` are recognized by
|
2011-10-10 23:03:36 -04:00
|
|
|
makepkg as PGP signatures and will be automatically used to verify the integrity
|
|
|
|
of the corresponding source file.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*noextract (array)*::
|
|
|
|
An array of filenames corresponding to those from the source array. Files
|
|
|
|
listed here will not be extracted with the rest of the source files. This
|
2011-06-09 17:17:06 -04:00
|
|
|
is useful for packages that use compressed data directly.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*md5sums (array)*::
|
|
|
|
This array contains an MD5 hash for every source file specified in the
|
|
|
|
source array (in the same order). makepkg will use this to verify source
|
2011-12-22 01:51:22 -05:00
|
|
|
file integrity during subsequent builds. If 'SKIP' is put in the array
|
|
|
|
in place of a normal hash, the integrity check for that source file will
|
|
|
|
be skipped. To easily generate md5sums, run ``makepkg -g >> PKGBUILD''.
|
|
|
|
If desired, move the md5sums line to an appropriate location.
|
2008-06-08 14:50:01 -04:00
|
|
|
|
|
|
|
*sha1sums, sha256sums, sha384sums, sha512sums (arrays)*::
|
|
|
|
Alternative integrity checks that makepkg supports; these all behave
|
|
|
|
similar to the md5sums option described above. To enable use and generation
|
|
|
|
of these checksums, be sure to set up the `INTEGRITY_CHECK` option in
|
|
|
|
linkman:makepkg.conf[5].
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*groups (array)*::
|
|
|
|
An array of symbolic names that represent groups of packages, allowing
|
|
|
|
you to install multiple packages by requesting a single target. For
|
2007-07-16 12:57:02 -04:00
|
|
|
example, one could install all KDE packages by installing the 'kde' group.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*arch (array)*::
|
2011-06-09 17:17:06 -04:00
|
|
|
Defines on which architectures the given package is available (e.g.,
|
2009-09-07 13:40:53 -04:00
|
|
|
`arch=('i686' 'x86_64')`). Packages that contain no architecture specific
|
2011-08-16 12:33:24 -04:00
|
|
|
files should use `arch=('any')`.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*backup (array)*::
|
2011-06-09 17:17:06 -04:00
|
|
|
An array of filenames, without preceding slashes, that
|
2007-07-02 19:22:01 -04:00
|
|
|
should be backed up if the package is removed or upgraded. This is
|
|
|
|
commonly used for packages placing configuration files in /etc. See
|
2007-12-29 01:24:15 -05:00
|
|
|
Handling Config Files in linkman:pacman[8] for more information.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*depends (array)*::
|
2011-06-09 17:17:06 -04:00
|
|
|
An array of packages this package depends on to run. Entries in
|
2007-07-02 19:22:01 -04:00
|
|
|
this list should be surrounded with single quotes and contain at least
|
|
|
|
the package name. Entries can also include a version requirement of the
|
2011-08-16 12:33:24 -04:00
|
|
|
form 'name<>version', where `<>` is one of five comparisons: `>=` (greater
|
|
|
|
than or equal to), `<=` (less than or equal to), `=` (equal to), `>`
|
|
|
|
(greater than), or `<` (less than).
|
2011-06-04 11:28:45 -04:00
|
|
|
+
|
|
|
|
If the dependency name appears to be a library (ends with .so), makepkg will
|
|
|
|
try to find a binary that depends on the library in the built package and
|
|
|
|
append the version needed by the binary. Appending the version yourself
|
|
|
|
disables auto detection.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*makedepends (array)*::
|
2011-06-09 17:17:06 -04:00
|
|
|
An array of packages this package depends on to build but are not
|
2007-07-02 19:22:01 -04:00
|
|
|
needed at runtime. Packages in this list follow the same format as
|
|
|
|
depends.
|
|
|
|
|
2010-12-15 09:06:43 -05:00
|
|
|
*checkdepends (array)*::
|
2011-06-09 17:17:06 -04:00
|
|
|
An array of packages this package depends on to run its test suite
|
2010-12-15 09:06:43 -05:00
|
|
|
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.
|
|
|
|
|
2008-01-10 23:40:54 -05:00
|
|
|
*optdepends (array)*::
|
2009-02-17 17:58:33 -05:00
|
|
|
An array of packages (and accompanying reasons) that are not essential for
|
|
|
|
base functionality, but may be necessary to make full use of the contents
|
|
|
|
of this package. optdepends are currently for informational purposes only
|
|
|
|
and are not utilized by pacman during dependency resolution. The format
|
2009-08-30 16:05:46 -04:00
|
|
|
for specifying optdepends is:
|
2008-01-10 23:40:54 -05:00
|
|
|
|
|
|
|
optdepends=('fakeroot: for makepkg usage as normal user')
|
|
|
|
|
2007-07-02 19:22:01 -04:00
|
|
|
*conflicts (array)*::
|
|
|
|
An array of packages that will conflict with this package (i.e. they
|
|
|
|
cannot both be installed at the same time). This directive follows the
|
2011-08-18 01:40:28 -04:00
|
|
|
same format as depends. Versioned conflicts are supported using the
|
|
|
|
operators as described in `depends`.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*provides (array)*::
|
2011-06-09 17:17:06 -04:00
|
|
|
An array of ``virtual provisions'' this package provides. This allows
|
2007-07-02 19:22:01 -04:00
|
|
|
a package to provide dependencies other than its own package name. For
|
|
|
|
example, the dcron package can provide 'cron', which allows packages to
|
|
|
|
depend on 'cron' rather than 'dcron OR fcron'.
|
2011-08-18 01:40:28 -04:00
|
|
|
+
|
|
|
|
Versioned provisions are also possible, in the 'name=version' format. For
|
|
|
|
example, dcron can provide 'cron=2.0' to satisfy the 'cron>=2.0' dependency of
|
|
|
|
other packages. Provisions involving the `>` and `<` operators are invalid as
|
|
|
|
only specific versions of a package may be provided.
|
2011-06-04 11:28:45 -04:00
|
|
|
+
|
|
|
|
If the provision name appears to be a library (ends with .so), makepkg will
|
|
|
|
try to find the library in the built package and append the correct
|
|
|
|
version. Appending the version yourself disables auto detection.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*replaces (array)*::
|
2011-06-09 17:17:06 -04:00
|
|
|
An array of packages this package should replace. This can be used
|
2007-07-02 19:22:01 -04:00
|
|
|
to handle renamed/combined packages. For example, if the 'j2re' package
|
|
|
|
is renamed to 'jre', this directive allows future upgrades to continue
|
2011-08-18 01:40:28 -04:00
|
|
|
as expected even though the package has moved. Versioned replaces are
|
|
|
|
supported using the operators as described in `depends`.
|
|
|
|
+
|
|
|
|
Sysupgrade is currently the only pacman operation that utilizes this field.
|
|
|
|
A normal sync or upgrade will not use its value.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*options (array)*::
|
|
|
|
This array allows you to override some of makepkg's default behavior
|
|
|
|
when building packages. To set an option, just include the option name
|
2007-07-16 12:57:02 -04:00
|
|
|
in the options array. To reverse the default behavior, place an ``!'' at
|
2007-07-02 19:22:01 -04:00
|
|
|
the front of the option. Only specify the options you specifically want
|
2007-12-29 01:24:15 -05:00
|
|
|
to override, the rest will be taken from linkman:makepkg.conf[5].
|
2010-10-08 09:52:14 -04:00
|
|
|
*NOTE:* 'force' is a now-removed option in favor of the top level 'epoch'
|
|
|
|
variable.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
2007-07-16 12:57:02 -04:00
|
|
|
*strip*;;
|
2007-07-02 19:22:01 -04:00
|
|
|
Strip symbols from binaries and libraries. If you frequently
|
|
|
|
use a debugger on programs or libraries, it may be helpful to
|
|
|
|
disable this option.
|
|
|
|
|
2007-07-16 12:57:02 -04:00
|
|
|
*docs*;;
|
2008-08-12 13:00:18 -04:00
|
|
|
Save doc directories. If you wish to delete doc directories,
|
|
|
|
specify `!docs` in the array.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
2007-07-16 12:57:02 -04:00
|
|
|
*libtool*;;
|
|
|
|
Leave libtool (.la) files in packages. Specify `!libtool` to
|
2007-07-02 19:22:01 -04:00
|
|
|
remove them.
|
|
|
|
|
2007-07-16 12:57:02 -04:00
|
|
|
*emptydirs*;;
|
2007-07-02 19:22:01 -04:00
|
|
|
Leave empty directories in packages.
|
|
|
|
|
2008-03-12 19:25:38 -04:00
|
|
|
*zipman*;;
|
2008-08-12 13:00:18 -04:00
|
|
|
Compress man and info pages with gzip.
|
2008-03-12 19:25:38 -04:00
|
|
|
|
2011-06-14 08:01:05 -04:00
|
|
|
*upx*;;
|
|
|
|
Compress binary executable files using UPX.
|
|
|
|
|
2007-07-16 12:57:02 -04:00
|
|
|
*ccache*;;
|
2007-07-02 19:22:01 -04:00
|
|
|
Allow the use of ccache during build. More useful in its negative
|
2007-07-16 12:57:02 -04:00
|
|
|
form `!ccache` with select packages that have problems building
|
2007-07-02 19:22:01 -04:00
|
|
|
with ccache.
|
|
|
|
|
2007-07-16 12:57:02 -04:00
|
|
|
*distcc*;;
|
2007-07-02 19:22:01 -04:00
|
|
|
Allow the use of distcc during build. More useful in its negative
|
2007-07-16 12:57:02 -04:00
|
|
|
form `!distcc` with select packages that have problems building
|
2007-07-02 19:22:01 -04:00
|
|
|
with distcc.
|
|
|
|
|
2010-12-25 00:43:06 -05:00
|
|
|
*buildflags*;;
|
|
|
|
Allow the use of user-specific buildflags (CFLAGS, CXXFLAGS, LDFLAGS)
|
|
|
|
during build as specified in linkman:makepkg.conf[5]. More useful in
|
|
|
|
its negative form `!buildflags` with select packages that have problems
|
|
|
|
building with custom buildflags.
|
|
|
|
|
2007-07-16 12:57:02 -04:00
|
|
|
*makeflags*;;
|
2007-07-02 19:22:01 -04:00
|
|
|
Allow the use of user-specific makeflags during build as specified
|
2007-12-29 01:24:15 -05:00
|
|
|
in linkman:makepkg.conf[5]. More useful in its negative form
|
2007-07-16 12:57:02 -04:00
|
|
|
`!makeflags` with select packages that have problems building with
|
|
|
|
custom makeflags such as `-j2` (or higher).
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
|
2008-06-14 12:57:10 -04:00
|
|
|
build() Function
|
|
|
|
----------------
|
2011-06-09 17:17:06 -04:00
|
|
|
In addition to the above directives, the optional build() function usually
|
2010-12-13 23:35:33 -05:00
|
|
|
comprises the remainder of the PKGBUILD. This is directly sourced and executed
|
|
|
|
by makepkg, so anything that bash or the system has available is available for
|
|
|
|
use here. The function is run in `bash -e` mode, meaning any command that exits
|
|
|
|
with a non-zero status will cause the function to exit. Be sure any exotic
|
|
|
|
commands used are covered by `makedepends`.
|
2008-06-14 12:57:10 -04:00
|
|
|
|
2011-07-05 23:48:50 -04:00
|
|
|
All of the above variables such as `$pkgname` and `$pkgver` are available for use
|
2011-06-09 17:17:06 -04:00
|
|
|
in the build function. In addition, makepkg defines the following three
|
|
|
|
variables for use during the build and install process:
|
2008-06-14 12:57:10 -04:00
|
|
|
|
|
|
|
*startdir*::
|
2011-06-09 17:17:06 -04:00
|
|
|
This contains the absolute path to the directory where the PKGBUILD is
|
2008-06-14 12:57:10 -04:00
|
|
|
located, which is usually the output of `$(pwd)` when makepkg is started.
|
2011-08-16 03:21:56 -04:00
|
|
|
Use of this variable is deprecated and strongly discouraged.
|
2008-06-14 12:57:10 -04:00
|
|
|
|
|
|
|
*srcdir*::
|
2011-06-09 17:17:06 -04:00
|
|
|
This contains the directory where makepkg extracts, or copies, all source
|
2009-05-10 11:16:51 -04:00
|
|
|
files.
|
2008-06-14 12:57:10 -04:00
|
|
|
|
|
|
|
*pkgdir*::
|
2011-06-09 17:17:06 -04:00
|
|
|
This contains the directory where makepkg bundles the installed package
|
2008-06-14 12:57:10 -04:00
|
|
|
(this directory will become the root directory of your built package).
|
|
|
|
|
2011-06-09 17:17:06 -04:00
|
|
|
If you create any variables of your own in the build function, it is
|
2008-06-14 12:57:10 -04:00
|
|
|
recommended to use the bash `local` keyword to scope the variable to inside
|
|
|
|
the build function.
|
|
|
|
|
2010-12-15 09:06:43 -05:00
|
|
|
check() Function
|
|
|
|
----------------
|
|
|
|
An optional check() function can be specified in which a packages test-suite
|
|
|
|
may be run. This function is run between the build() and package() functions.
|
|
|
|
The function is run in `bash -e` mode, meaning any command that exits with a
|
|
|
|
non-zero status will cause the function to exit. Be sure any exotic commands
|
|
|
|
used are covered by `checkdepends`.
|
|
|
|
|
2009-01-16 07:20:05 -05:00
|
|
|
package() Function
|
|
|
|
------------------
|
2010-12-13 23:35:33 -05:00
|
|
|
An optional package() function can be specified in addition to the build()
|
2010-12-15 09:06:43 -05:00
|
|
|
function. This function is run after the build() and check() functions. The
|
2010-12-13 23:35:33 -05:00
|
|
|
function is run in `bash -e` mode, meaning any command that exits with a
|
|
|
|
non-zero status will cause the function to exit. When specified in combination
|
|
|
|
with the fakeroot BUILDENV option in linkman:makepkg.conf[5], fakeroot usage
|
|
|
|
will be limited to running the packaging stage. An existing build() function
|
2009-10-27 07:56:13 -04:00
|
|
|
will be run as the user calling makepkg.
|
2009-01-16 07:20:05 -05:00
|
|
|
|
2009-05-10 11:16:51 -04:00
|
|
|
Package Splitting
|
|
|
|
-----------------
|
2010-12-13 23:35:24 -05:00
|
|
|
makepkg supports building multiple packages from a single PKGBUILD. This is
|
|
|
|
achieved by assigning an array of package names to the `pkgname` directive.
|
|
|
|
Each split package uses a corresponding packaging function with name
|
|
|
|
`package_foo()`, where `foo` is the name of the split package.
|
|
|
|
|
|
|
|
All options and directives for the split packages default to the global values
|
2011-06-09 17:17:06 -04:00
|
|
|
given in the PKGBUILD. Nevertheless, the following ones can be overridden within
|
|
|
|
each split package's packaging function:
|
2011-07-22 06:08:39 -04:00
|
|
|
`pkgver`, `pkgrel`, `epoch`, `pkgdesc`, `arch`, `license`, `groups`, `depends`,
|
2010-12-13 23:35:24 -05:00
|
|
|
`optdepends`, `provides`, `conflicts`, `replaces`, `backup`, `options`,
|
|
|
|
`install` and `changelog`.
|
2009-05-10 11:16:51 -04:00
|
|
|
|
|
|
|
An optional global directive is available when building a split package:
|
|
|
|
|
|
|
|
*pkgbase*::
|
|
|
|
The name used to refer to the group of packages in the output of makepkg
|
|
|
|
and in the naming of source-only tarballs. If not specified, the first
|
2010-06-25 19:16:42 -04:00
|
|
|
element in the `pkgname` array is used. The variable is not allowed to
|
|
|
|
begin with a hyphen.
|
2009-05-10 11:16:51 -04:00
|
|
|
|
2007-07-02 19:22:01 -04:00
|
|
|
Install/Upgrade/Remove Scripting
|
|
|
|
--------------------------------
|
|
|
|
Pacman has the ability to store and execute a package-specific script when it
|
|
|
|
installs, removes, or upgrades a package. This allows a package to configure
|
2007-10-29 23:25:30 -04:00
|
|
|
itself after installation and perform an opposite action upon removal.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
2011-07-05 23:48:50 -04:00
|
|
|
The exact time the script is run varies with each operation, and should be
|
|
|
|
self-explanatory. Note that during an upgrade operation, none of the install
|
|
|
|
or remove scripts will be called.
|
|
|
|
|
|
|
|
Scripts are passed either one or two ``full version strings'', where a full
|
|
|
|
version string is either 'pkgver-pkgrel' or 'epoch:pkgver-pkgrel' if epoch is
|
|
|
|
non-zero.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*pre_install*::
|
2011-07-05 23:48:50 -04:00
|
|
|
Run right before files are extracted. One argument is passed:
|
|
|
|
new package full version string.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*post_install*::
|
2011-07-05 23:48:50 -04:00
|
|
|
Run right after files are extracted. One argument is passed:
|
|
|
|
new package full version string.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*pre_upgrade*::
|
2011-07-05 23:48:50 -04:00
|
|
|
Run right before files are extracted. Two arguments are passed in this
|
|
|
|
order: new package full version string, old package full version string.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*post_upgrade*::
|
2011-07-05 23:48:50 -04:00
|
|
|
Run after files are extracted. Two arguments are passed in this order:
|
|
|
|
new package full version string, old package full version string.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*pre_remove*::
|
2011-07-05 23:48:50 -04:00
|
|
|
Run right before files are removed. One argument is passed:
|
|
|
|
old package full version string.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
*post_remove*::
|
2011-07-05 23:48:50 -04:00
|
|
|
Run right after files are removed. One argument is passed:
|
|
|
|
old package full version string.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
To use this feature, create a file such as 'pkgname.install' and put it in the
|
|
|
|
same directory as the PKGBUILD script. Then use the install directive:
|
|
|
|
|
|
|
|
install=pkgname.install
|
|
|
|
|
2007-10-29 23:25:30 -04:00
|
|
|
The install script does not need to be specified in the source array. A
|
2010-05-13 19:11:50 -04:00
|
|
|
template install file is available in '{pkgdatadir}' as 'proto.install' for
|
|
|
|
reference with all of the available functions defined.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
|
2007-10-29 23:25:30 -04:00
|
|
|
Development Directives
|
|
|
|
----------------------
|
|
|
|
makepkg supports building development versions of packages without having to
|
|
|
|
manually update the pkgver in the PKGBUILD. This was formerly done using the
|
|
|
|
separate utility 'versionpkg'. In order to utilize this functionality, your
|
|
|
|
PKGBUILD must use correct variable names depending on the SCM being fetched
|
2011-06-09 17:17:06 -04:00
|
|
|
from (e.g., 'makepkg-git', 'mplayer-svn').
|
2007-10-29 23:25:30 -04:00
|
|
|
|
|
|
|
*CVS*::
|
|
|
|
The generated pkgver will be the date the package is built.
|
|
|
|
|
|
|
|
*_cvsroot*;;
|
|
|
|
The root of the CVS repository.
|
|
|
|
|
|
|
|
*_cvsmod*;;
|
|
|
|
The CVS module to fetch.
|
|
|
|
|
|
|
|
*SVN*::
|
|
|
|
The generated pkgver will be the latest SVN revision number.
|
|
|
|
|
|
|
|
*_svntrunk*;;
|
|
|
|
The trunk of the SVN repository.
|
|
|
|
|
2008-01-12 15:49:04 -05:00
|
|
|
*_svnmod*;;
|
2007-10-29 23:25:30 -04:00
|
|
|
The SVN module to fetch.
|
|
|
|
|
|
|
|
*Git*::
|
2011-08-05 16:44:00 -04:00
|
|
|
The generated pkgver will be the date the package is built.
|
2007-10-29 23:25:30 -04:00
|
|
|
|
|
|
|
*_gitroot*;;
|
|
|
|
The URL (all protocols supported) to the GIT repository.
|
|
|
|
|
|
|
|
*_gitname*;;
|
|
|
|
GIT tag or branch to use.
|
|
|
|
|
|
|
|
*Mercurial*::
|
|
|
|
The generated pkgver will be the hg tip revision number.
|
|
|
|
|
|
|
|
*_hgroot*;;
|
2007-11-08 10:33:05 -05:00
|
|
|
The URL of the mercurial repository.
|
2007-10-29 23:25:30 -04:00
|
|
|
|
|
|
|
*_hgrepo*;;
|
2007-11-08 10:33:05 -05:00
|
|
|
The repository to follow.
|
2007-10-29 23:25:30 -04:00
|
|
|
|
|
|
|
*Darcs*::
|
|
|
|
The generated pkgver will be the date the package is built.
|
|
|
|
|
|
|
|
*_darcstrunk*;;
|
2007-11-08 10:33:05 -05:00
|
|
|
URL to the repository trunk.
|
2007-10-29 23:25:30 -04:00
|
|
|
|
|
|
|
*_darcsmod*;;
|
2007-11-08 10:33:05 -05:00
|
|
|
Darcs module to use.
|
2007-10-29 23:25:30 -04:00
|
|
|
|
|
|
|
*Bazaar*::
|
|
|
|
The generated pkgver will be the latest Bazaar revision number (revno).
|
|
|
|
|
|
|
|
*_bzrtrunk*;;
|
2007-11-08 10:33:05 -05:00
|
|
|
URL to the bazaar repository.
|
2007-10-29 23:25:30 -04:00
|
|
|
|
|
|
|
*_bzrmod*;;
|
2007-11-08 10:33:05 -05:00
|
|
|
Bazaar module to use.
|
|
|
|
|
2007-10-29 23:25:30 -04:00
|
|
|
|
2007-07-02 19:22:01 -04:00
|
|
|
Example
|
|
|
|
-------
|
2007-11-20 20:06:37 -05:00
|
|
|
The following is an example PKGBUILD for the 'patch' package. For more
|
2007-12-10 13:06:12 -05:00
|
|
|
examples, look through the build files of your distribution's packages. For
|
|
|
|
those using Arch Linux, consult the ABS tree.
|
2007-07-02 19:22:01 -04:00
|
|
|
|
2008-12-25 02:40:52 -05:00
|
|
|
[source,sh]
|
|
|
|
-------------------------------
|
2007-07-06 11:30:53 -04:00
|
|
|
include::PKGBUILD-example.txt[]
|
2008-12-25 02:40:52 -05:00
|
|
|
-------------------------------
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
See Also
|
|
|
|
--------
|
2007-12-29 01:24:15 -05:00
|
|
|
linkman:makepkg[8], linkman:pacman[8], linkman:makepkg.conf[5]
|
2007-07-02 19:22:01 -04:00
|
|
|
|
|
|
|
include::footer.txt[]
|