2007-02-06 13:33:35 -05:00
|
|
|
." the string declarations are a start to try and make distro independent
|
|
|
|
.ds DS Arch Linux
|
|
|
|
.ds PB PKGBUILD
|
|
|
|
.ds VR 3.0.0
|
2007-02-08 00:24:17 -05:00
|
|
|
.TH \*(PB 5 "Feb 07, 2007" "\*(PB version \*(VR" "\*(DS Files"
|
2007-02-06 13:33:35 -05:00
|
|
|
.SH NAME
|
2007-02-08 00:24:17 -05:00
|
|
|
\*(PB \- \*(DS package build description file
|
|
|
|
|
2007-02-06 13:33:35 -05:00
|
|
|
.SH DESCRIPTION
|
2007-02-09 01:08:31 -05:00
|
|
|
This manual page is meant to describe general rules about \fB\*(PB\fPs. Once
|
|
|
|
a \fB\*(PB\fP is written, the actual package is built using \fBmakepkg\fP and
|
|
|
|
installed with \fBpacman\fP.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
2007-02-09 01:08:31 -05:00
|
|
|
\fBNOTE:\fP If you have a local copy of the Arch Build System (ABS) tree
|
2007-02-08 00:24:17 -05:00
|
|
|
on your computer, you can copy the \*(PB.proto file to your new package
|
2007-02-06 13:33:35 -05:00
|
|
|
build directory and edit it from there. To acquire/sync the ABS tree, use
|
2007-02-09 01:08:31 -05:00
|
|
|
the \fBabs\fP script included with \fBpacman\fP.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.SH OPTIONS AND DIRECTIVES
|
|
|
|
.TP
|
|
|
|
.B pkgname
|
|
|
|
The name of the package. This has be a unix-friendly name as it will be
|
|
|
|
used in the package filename.
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B pkgver
|
2007-02-09 01:08:31 -05:00
|
|
|
The version of the software as released from the author (e.g. 2.7.1).
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
|
|
|
.B pkgrel
|
2007-02-09 01:08:31 -05:00
|
|
|
This is the release number specific to the \*(DSs release. This allows package
|
2007-02-06 13:33:35 -05:00
|
|
|
maintainers to make updates to the package's configure flags, for example.
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B pkgdesc
|
2007-02-09 01:08:31 -05:00
|
|
|
This should be a brief description of the package and its functionality. Try to
|
|
|
|
keep the description to one line of text.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
|
|
|
.B url
|
2007-02-09 01:08:31 -05:00
|
|
|
This field contains a URL that is associated with the software being packaged.
|
|
|
|
This is typically the project's website.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B license (array)
|
2007-02-06 13:33:35 -05:00
|
|
|
This field specifies the license(s) that apply to the package. Commonly-used
|
2007-02-09 01:08:31 -05:00
|
|
|
licenses are found in \fI/usr/share/licenses/common\fP. If you see the
|
|
|
|
package's license there, simply reference it in the license field (e.g.
|
|
|
|
\fBlicense=("GPL")\fP). If the package provides a license not found in
|
|
|
|
\fI/usr/share/licenses/common\fP, then you should include the license in the
|
|
|
|
package itself and set \fBlicense=("custom")\fP or
|
|
|
|
\fBlicense=("custom:LicenseName")\fP. The license should be placed in
|
|
|
|
\fI$startdir/pkg/usr/share/licenses/$pkgname\fP when building the package. If
|
|
|
|
multiple licenses are applicable for a package, list all of them:
|
|
|
|
\fBlicenses=('GPL' 'FDL')\fP.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
|
|
|
.B install
|
2007-02-08 22:44:54 -05:00
|
|
|
Specifies a special install script that is to be included in the package. This
|
|
|
|
file should reside in the same directory as the \fB\*(PB\fP, and will be copied
|
|
|
|
into the package by \fBmakepkg\fP. It does not need to be included in the
|
2007-02-23 14:51:24 -05:00
|
|
|
\fIsource\fP array (e.g. \fBinstall=pkgname.install\fP).
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B source \fI(array)\fP
|
|
|
|
An array of source files required to build the package. Source files must
|
|
|
|
either reside in the same directory as the \fB\*(PB file\fP, or be a
|
|
|
|
fully-qualified URL that makepkg will use to download the file. In order to
|
|
|
|
make the PKGBUILD as useful as possible, use the \fB$pkgname\fP and
|
|
|
|
\fB$pkgver\fP variables if possible when specifying the download location.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
2007-02-06 13:45:32 -05:00
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B noextract \fI(array)\fP
|
|
|
|
An array of filenames corresponding to those from the \fBsource\fP array. Files
|
|
|
|
listed here will not be extracted with the rest of the source files. This is
|
|
|
|
useful for packages which use compressed data which is downloaded but not
|
|
|
|
necessary to uncompress.
|
2007-02-06 13:45:32 -05:00
|
|
|
|
2007-02-06 13:33:35 -05:00
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B md5sums \fI(array)\fP
|
|
|
|
This array contains an MD5 hash for every source file specified in the
|
|
|
|
\fBsource\fP array (in the same order). \fBmakepkg\fP will use this to verify
|
|
|
|
source file integrity during subsequent builds. To easily generate md5sums, run
|
|
|
|
"makepkg -g >> \*(PB". If desired, move the \fBmd5sums\fP line to an
|
|
|
|
appropriate location. NOTE: \fBmakepkg\fP supports multiple integrity
|
|
|
|
algorithms and their corresponding arrays (i.e. sha1sums for the SHA1
|
|
|
|
algorithm); however, official packages use only md5sums for the time being.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
2007-02-08 22:44:54 -05:00
|
|
|
.TP
|
|
|
|
.B sha1sums, etc.
|
2007-02-09 01:08:31 -05:00
|
|
|
Alternative integrity checks that \fBmakepkg\fP supports, as noted in
|
2007-02-08 22:44:54 -05:00
|
|
|
\fBmd5sums\fP above.
|
|
|
|
|
2007-02-06 13:33:35 -05:00
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B groups \fI(array)\fP
|
|
|
|
An array of symbolic names that represent groups of packages, allowing
|
2007-02-06 13:33:35 -05:00
|
|
|
you to install multiple packages by requesting a single target. For example,
|
|
|
|
one could install all KDE packages by installing the 'kde' group.
|
|
|
|
|
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B arch \fI(array)\fP
|
2007-02-23 14:51:24 -05:00
|
|
|
Defines on which architectures the given package is available (e.g.
|
|
|
|
\fBarch=('i686' 'x86_64')\fP).
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B backup \fI(array)\fP
|
|
|
|
A space-delimited array of filenames, \fIwithout\fP preceding slashes, that
|
|
|
|
should be backed up if the package is removed or upgraded. This is commonly
|
|
|
|
used for packages placing configuration files in /etc. See \fBHANDLING CONFIG
|
|
|
|
FILES\fP in the \fBpacman\fP manpage for more information.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B depends \fI(array)\fP
|
|
|
|
An array of packages that this package depends on to run. Packages in this list
|
|
|
|
should be surrounded with single quotes and contain at least the package name.
|
|
|
|
Entries can also include a version requirement of the form
|
|
|
|
\fB'name<>version'\fP, where <> is one of three comparisons: \fI>=\fP (greater
|
|
|
|
than or equal to), \fI<=\fP (less than or equal to), or \fI=\fP (equal to).
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B makedepends \fI(array)\fP
|
|
|
|
An array of packages that this package depends on to build, but are not needed
|
|
|
|
at runtime. Packages in this list follow the same format as \fBdepends\fP.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B conflicts \fI(array)\fP
|
|
|
|
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 same format as
|
|
|
|
\fIdepends\fP, except you cannot specify versions.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B provides \fI(array)\fP
|
2007-02-06 13:33:35 -05:00
|
|
|
An array of "virtual provisions" that this package provides. This allows a
|
|
|
|
package to provide dependencies other than its own package name. For example,
|
2007-02-09 01:08:31 -05:00
|
|
|
the dcron package can provide 'cron', which allows packages to depend on 'cron'
|
|
|
|
rather than 'dcron OR fcron'.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B replaces \fI(array)\fP
|
|
|
|
An array of packages that this package should replace, and can be used to
|
|
|
|
handle renamed/combined packages. For example, if the 'j2re' package is renamed
|
|
|
|
to 'jre', this directive allows future upgrades to continue as expected even
|
|
|
|
though the package has moved.
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.TP
|
2007-02-09 01:08:31 -05:00
|
|
|
.B options \fI(array)\fP
|
2007-02-09 10:37:20 -05:00
|
|
|
This array allows you to override some of \fBmakepkg\fP's default behavior when
|
|
|
|
building packages. To set an option, just include the option name in the
|
|
|
|
\fBoptions\fP array. To reverse the default behavior, place an "!" at the front
|
|
|
|
of the option. Only specify the options you specifically want to override, the
|
|
|
|
rest will be taken from \fBmakepkg.conf\fP. NOTE: 'force' is a special option
|
|
|
|
only used in \fB\*(PB\fPs, do not use it unless you know what you are doing.
|
|
|
|
.RS
|
|
|
|
.TP
|
|
|
|
.B strip
|
|
|
|
Strip symbols from binaries and libraries. If you frequently use a debugger on
|
|
|
|
programs or libraries, it may be helpful to disable this option.
|
|
|
|
.TP
|
|
|
|
.B docs
|
|
|
|
Save doc and info directories. If you wish to delete doc and info directories,
|
|
|
|
specify "!docs" in the array.
|
|
|
|
.TP
|
|
|
|
.B libtool
|
|
|
|
Leave libtool (.la) files in packages. Specify "!libtool" to remove them.
|
|
|
|
.TP
|
|
|
|
.B emptydirs
|
|
|
|
Leave empty directories in packages.
|
|
|
|
.TP
|
2007-02-23 14:51:24 -05:00
|
|
|
.B ccache
|
|
|
|
Allow the use of \fBccache\fP during build. More useful in its negative form
|
|
|
|
"!ccache" with select packages that have problems building with \fBccache\fP.
|
|
|
|
.TP
|
|
|
|
.B distcc
|
|
|
|
Allow the use of \fBdistcc\fP during build. More useful in its negative form
|
|
|
|
"!distcc" with select packages that have problems building with \fBdistcc\fP.
|
|
|
|
.TP
|
|
|
|
.B makeflags
|
|
|
|
Allow the use of user-specific makeflags during build as specified in
|
|
|
|
\fBmakepkg.conf\fP. More useful in its negative form "!makeflags" with select
|
|
|
|
packages that have problems building with custom makeflags such as "-j2" (or
|
|
|
|
higher).
|
|
|
|
.TP
|
2007-02-09 10:37:20 -05:00
|
|
|
.B force
|
|
|
|
Force the package to be upgraded by a \fBpacman\fP system upgrade operation,
|
|
|
|
even if the version number would normally not trigger such an upgrade. This is
|
|
|
|
useful when the version numbering scheme of a package changes (or is
|
|
|
|
alphanumeric).
|
|
|
|
.RE
|
2007-02-06 13:45:32 -05:00
|
|
|
|
2007-02-09 01:08:31 -05:00
|
|
|
.SH INSTALL/UPGRADE/REMOVE SCRIPTING
|
2007-02-08 22:44:54 -05:00
|
|
|
\fBPacman\fP has the ability to store and execute a package-specific script
|
|
|
|
when it installs, removes, or upgrades a package. This allows a package to
|
2007-02-09 01:08:31 -05:00
|
|
|
configure itself after installation and do the opposite right before it is
|
2007-02-08 22:44:54 -05:00
|
|
|
removed.
|
2007-02-06 13:45:32 -05:00
|
|
|
|
|
|
|
The exact time the script is run varies with each operation:
|
|
|
|
|
2007-02-06 13:33:35 -05:00
|
|
|
.TP
|
2007-02-06 13:45:32 -05:00
|
|
|
.B pre_install
|
|
|
|
script is run right before files are extracted.
|
|
|
|
|
2007-02-06 13:33:35 -05:00
|
|
|
.TP
|
2007-02-06 13:45:32 -05:00
|
|
|
.B post_install
|
|
|
|
script is run right after files are extracted.
|
|
|
|
|
2007-02-06 13:33:35 -05:00
|
|
|
.TP
|
2007-02-06 13:45:32 -05:00
|
|
|
.B pre_upgrade
|
|
|
|
script is run right before files are extracted.
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B post_upgrade
|
|
|
|
script is run after files are extracted.
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B pre_remove
|
|
|
|
script is run right before files are removed.
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B post_remove
|
|
|
|
script is run right after files are removed.
|
|
|
|
|
|
|
|
.P
|
2007-02-09 01:08:31 -05:00
|
|
|
To use this feature, create a file such as 'pkgname.install' and put it in
|
|
|
|
the same directory as the \fB\*(PB\fP script. Then use the \fBinstall\fP
|
2007-02-06 13:45:32 -05:00
|
|
|
directive:
|
|
|
|
|
2007-02-09 01:08:31 -05:00
|
|
|
.RS
|
|
|
|
.nf
|
2007-02-06 13:45:32 -05:00
|
|
|
install=pkgname.install
|
2007-02-09 01:08:31 -05:00
|
|
|
.fi
|
|
|
|
.RE
|
2007-02-06 13:45:32 -05:00
|
|
|
|
2007-02-09 01:08:31 -05:00
|
|
|
The install script does not need to be specified in the \fBsource\fP array.
|
|
|
|
A template install file is available in the ABS tree (/var/abs/install.proto).
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
.SH EXAMPLE
|
2007-02-09 01:08:31 -05:00
|
|
|
The following is an example \fB\*(PB\fP for the 'modutils' package. For more
|
2007-02-06 13:33:35 -05:00
|
|
|
examples, look through the ABS tree.
|
|
|
|
|
|
|
|
.nf
|
|
|
|
# Maintainer: John Doe <johndoe@archlinux.org>
|
2007-02-06 13:45:32 -05:00
|
|
|
# Contributor: Bill Smith <billsmith@archlinux.org>
|
2007-02-06 13:33:35 -05:00
|
|
|
pkgname=modutils
|
|
|
|
pkgver=2.4.25
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Utilities for inserting modules in the linux kernel"
|
|
|
|
url="http://www.kernel.org"
|
|
|
|
makedepends=('bash' 'mawk')
|
|
|
|
depends=('glibc' 'zlib')
|
|
|
|
backup=(etc/modules.conf)
|
2007-02-09 01:08:31 -05:00
|
|
|
source=(ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/v2.4/$pkgname-$pkgver.tar.bz2
|
2007-02-06 13:33:35 -05:00
|
|
|
modules.conf)
|
2007-02-06 13:45:32 -05:00
|
|
|
arch=('i686')
|
2007-02-09 01:08:31 -05:00
|
|
|
license=('GPL' 'custom') # dual licensed
|
|
|
|
md5sums=('2c0cca3ef6330a187c6ef4fe41ecaa4d'
|
2007-02-06 13:33:35 -05:00
|
|
|
'35175bee593a7cc7d6205584a94d8625')
|
2007-02-09 01:08:31 -05:00
|
|
|
options=(!libtool)
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --enable-insmod-static
|
|
|
|
make || return 1
|
|
|
|
make prefix=$startdir/pkg/usr install
|
|
|
|
mv $startdir/pkg/usr/sbin $startdir/pkg
|
|
|
|
mkdir -p $startdir/pkg/etc
|
|
|
|
cp ../modules.conf $startdir/pkg/etc
|
|
|
|
}
|
|
|
|
.fi
|
|
|
|
|
|
|
|
.SH SEE ALSO
|
|
|
|
.BR makepkg (8),
|
2007-02-09 01:08:31 -05:00
|
|
|
.BR pacman (8),
|
|
|
|
.BR makepkg.conf (5)
|
2007-02-06 13:33:35 -05:00
|
|
|
|
|
|
|
See the Arch Linux website at <http://www.archlinux.org> for more current
|
2007-02-08 00:24:17 -05:00
|
|
|
information on the distribution and the \fBpacman\fP family of tools, and
|
2007-02-06 13:33:35 -05:00
|
|
|
<http://wiki.archlinux.org/index.php/Arch_Packaging_Standards> for
|
|
|
|
recommendations on packaging standards.
|
2007-02-08 00:24:17 -05:00
|
|
|
|
2007-02-06 13:33:35 -05:00
|
|
|
.SH AUTHORS
|
2007-02-08 00:24:17 -05:00
|
|
|
.nf
|
2007-02-06 13:33:35 -05:00
|
|
|
Judd Vinet <jvinet@zeroflux.org>
|
2007-02-06 13:45:32 -05:00
|
|
|
Aurelien Foret <aurelien@archlinux.org>
|
|
|
|
Aaron Griffin <aaron@archlinux.org>
|
|
|
|
Dan McGee <dan@archlinux.org>
|
2007-02-08 00:24:17 -05:00
|
|
|
.fi
|
2007-02-22 22:23:06 -05:00
|
|
|
|
|
|
|
See the 'AUTHORS' file for additional contributors.
|