makepkg (简体中文)

From ArchWiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

翻译状态:本文是 Makepkg翻译。上次翻译日期:2020-04-28。如果英文版本有所更改,则您可以帮助同步翻译。

makepkg是一个软件包自动编译脚本。使用时需要一个 Unix 环境和 PKGBUILD.

makepkg 是由 pacman 包提供的。

配置

makepkg 的详细配置选项可以通过 makepkg.conf(5) 查询。

/etc/makepkg.conf 是 makepkg 的主配置文件。用户的自定义配置位于 $XDG_CONFIG_HOME/pacman/makepkg.conf~/.makepkg.conf. 建议用户在编译软件包之前检查 makepkg 配置。

打包人信息

每个软件包都会有元数据信息,其中就包含 packager. 默认情况下,用户自己打包的软件标记为 Unknown Packager. 如果多个用户会在系统上编译,或者需要发布软件包给其他人,最好提供真实的联系人。可以通过 makepkg.conf 中的 PACKAGER 变量设置。

检查安装软件包的打包人:

pacman -Qi package
...
Packager       : Unknown Packager
...

修改之后:

pacman -Qi package
...
Packager       : John Doe <john@doe.com>
...

要自动签名过程,请同时在 makepkg.conf 中设置 GPGKEY 变量.

包输出

makepkg 默认会在工作目录创建软件包,并把源代码下载到 src/ 目录。可以配置到自定义的路径,比如所有安装的软件包放到 ~/build/packages/,所有源代码放到 ~/build/sources/.

配置以下makepkg.conf,如果需要配置变量:

  • PKGDEST — 目录中存储产生的包
  • SRCDEST — 目录中存储的source 数据 (符号链接将被放置到 src/ 如果点其他地方)
  • SRCPKGDEST —目录存储产生的源代码包 (构建用 makepkg -S)
提示: 可以用 paccache -c ~/build/packages/ 清理 PKGDEST 目录。

验证签名

注意: makepkg 中的签名验证并不使用 pacman 的密钥环, 而是使用用户的密钥[1]

如果签名文件是以 .sig.asc 形式作为 PKGBUILD 代码的一部分,makepkg 会自动验证 软件包. 如果用户未提供需要的签名公钥,makepkg 会停止安装过程并提示用户说无法验证 PGP 密钥。

如果缺少公钥或希望其他开发者进行签名,可以手动 导入[损坏的链接:无效的章节]或通过 密钥服务器 导入。要临时禁用签名检查请在执行 makepkg 命令时加上 --skippgpcheck 选项。

使用

继续之前,确保 base-devel 软件组已经安装。属于这个组的软件包不会列在 PKGBUILD 文件的依赖中。输入以下命令安装 base-devel 软件包组 (用 root 运行):

要编译软件包,用户必须首先建立一个 PKGBUILD,或者编译脚本(在 创建软件包 中有详细描述),或者从 ABS 编译系统Arch User Repository 或其他来源获取。

警告: 只从信任的来源编译和/或安装软件包。

拥有一个 PKGBUILD 之后,切换到存放这个文件的目录,输入下面的命令编译 PKGBUILD 描述的软件包:

$ makepkg

如果需要的依赖不满足,makepkg 会输出一个警告然后失败。想要编译软件包然后自动安装必须的依赖,只需要输入以下命令:

$ makepkg --syncdeps

注意这些依赖必须在已配置的软件源之中。另外,用户也可以在编译前手动安装需要的依赖(pacman -S --asdeps dep1 dep2)。如果添加了 -r/--rmdeps 选项,makepkg 会在结束前删除不再需要的编译依赖,如果需要持续编译软件包,请考虑使用 删除未使用软件包 的方式处理。

一旦所有的依赖都满足并且软件包成功编译,一个软件包文件 (pkgname-pkgver.pkg.tar.xz) 会在工作目录下创建。想安装,运行

$ makepkg --install

要清空残余的文件和目录,例如解压到 $srcdir 的文件,输入下面的选项。这对于在使用同一个文件夹多次编译同一个软件包或者升级软件包版本时很有用。它防止过期的或残余的文件呈递到新的编译任务中。

$ makepkg --clean

更多信息请阅读makepkg(8).

使用技巧

编译结果优化

在使用 makepkg 编译软件时,make, gccg++ 会使用 CFLAGSCXXFLAGS 选项。默认情况下,这些选项产生的是通用的包,可以在不同的机器上安装。使用针对目标机器的设置,可以获得性能提升,但编译出的包也许无法在其他机器上运行。

注意: 记住不是所有的包创建系统都会使用你设置的变量。一些包的 Makefiles 或者 PKGBUILD文件会覆盖设置。
/etc/makepkg.conf
...

#########################################################################
# ARCHITECTURE, COMPILE FLAGS
#########################################################################
#
CARCH="x86_64"
CHOST="x86_64-unknown-linux-gnu"

#-- Exclusive: will only run on x86_64
# -march (or -mcpu) builds exclusively for an architecture
# -mtune optimizes for an architecture, but builds for whole processor family
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
#-- Make Flags: change this for DistCC/SMP systems
#MAKEFLAGS="-j2"

...

默认的 makepkg.conf CFLAGSCXXFLAGS 是与所有机器各自的体系结构兼容的。

并不是所有的编译系统都使用 makepkg.conf 中定义的变量。例如, cmake 不会遵循 CPPFLAGS。所以 PKGBUILD 中会直接指定需要的配置。

源代码 Makefile 或编译命令行中指定的选项优先级更高,会取代 makepkg.conf 中的设置。

在 x86_64 机器上,不要花费时间进行编译选项优化,绝大部分情况下优化效果都不明显。使用非标准的 CFLAGS 非常容易降低性能,因为编译器倾向于快速增大生成的文件,例如解开循环、错误的向量化和非理性的内联函数。除非通过测评得出性能提升的结论,否则最好不要做优化。

GCC 的手册页面有完整的选项列表。Gentoo 编译器优化指南安全 Cflags wiki 文章提供了深入信息。

GCC 可以进行 CPU 自动检测,可以在编译时自动选择本地机器支持的优化。要使用它,删除所有 -march-mtune,然后添加 -march=native. 例如:

/etc/makepkg.conf
CFLAGS="-march=native -O2 -pipe -fstack-protector-strong -fno-plt"
CXXFLAGS="${CFLAGS}"

要查看march=native启用的选项,运行:

 $ gcc -march=native -v -Q --help=target
  • 如果没有指定 -march=native, -Q --help=target不会 起作用。[2] 需要通过一个编译过程确定真正使用的选项是哪个,请参考 Find CPU-specific options

生成新 md5sums

pacman 4.1 pacman-contrib 和其中的 updpkgsums 已经 合并 进入 pacman,生成和替换 PKGBUILD 中的校验和:

$ updpkgsums

减少编译时间

并行编译

make 编译系统使用 MAKEFLAGS 环境变量 指定 make 的额外选项。这个值也可以在 makepkg.conf 中进行设置。

使用多核系统的用户可以设定同时运行的任务数。可以用nproc获得可用处理器的个数,如果结果是 4, 则使用-j4. 有些 PKGBUILD 强制使用 -j1,因为某些版本会产生冲突或者软件包并不支持。如果出现软件包因为此原因无法编译,请在 bug 系统中报告

完整的选项请阅读 make(1)

使用内存文件系统进行编译

编译过程需要大量的读写操作,要处理很多小文件。将工作目录移动到 tmpfs 可以减少编译时间。

使用BUILDDIR变量可以临时将 makepkg 的编译目录设置到 tmpfs:

$ BUILDDIR=/tmp/makepkg makepkg
警告:

修改 makepkg.confBUILDDIR 选项可以永久变更编译目录。Arch 的默认 tmpfs 目录是 /tmp. 此变量可以设置为:BUILDDIR=/tmp/makepkg

注意:
  • 编译大工程可能导致内存不足。
  • tmpfs 目录挂载时不能使用 noexec 选项,否则编译命令可能无法执行。
  • tmpfs 中编译的文件重起后会消失,设置 PKGDEST[损坏的链接:无效的章节] 选项可以将编译结果保存到其它目录。

ccache

ccache 可以将编译结果缓存起来供下次编译使用,减少编译时间。

生成新校验和

安装 pacman-contrib,然后用下面命令生成新校验和并替换 PKGBUILD 中的内容,只需要执行:

$ updpkgsums

可以用 sha256sum 命令生成校验和并手动加入 sha256sums

使用其它压缩算法

To speed up both packaging and installation, with the tradeoff of having larger package archives, you can change PKGEXT. For example, the following makes the package archive uncompressed for only one invocation:

$ PKGEXT='.pkg.tar' makepkg

As another example, the following uses the lzop algorithm, with the lzop package required:

$ PKGEXT='.pkg.tar.lzo' makepkg

To make one of these settings permanent, set PKGEXT in /etc/makepkg.conf.

Utilizing multiple cores on compression

pbzip2 is a drop-in, parallel implementation for bzip2 which also uses all available CPU cores by default. The -p# flag can be used to employ less cores (note: no space between the -p and number of cores).

COMPRESSBZ2=(pbzip2 -c -f)

zstd supports symmetric multiprocessing (SMP) via the --threads flag to speed up compression. For example, to let makepkg use as many CPU cores as possible to compress packages, edit COMPRESSZST array in /etc/makepkg.conf:

COMPRESSZST=(zstd -c -z -q - --threads=0)

Show packages with specific packager

This shows all packages installed on the system with the packager named packagername:

$ expac "%n %p" | grep "packagername" | column -t

This shows all packages installed on the system with the packager set in the /etc/makepkg variable PACKAGER. This shows only packages that are in a repository defined in /etc/pacman.conf.

$ . /etc/makepkg.conf; grep -xvFf <(pacman -Qqm) <(expac "%n\t%p" | grep "$PACKAGER$" | cut -f1)

Build 32-bit packages on a 64-bit system

警告: Errors have been reported when using this method to build the linux package. The chroot method[archived page] is preferred and has been verified to work for building the kernel packages.

First, enable the multilib repository and install multilib-devel. Reply yes when asked about removing the conflicting gcc and gcc-libs packages; gcc-multilib is capable of building both 64-bit and 32-bit software.

Then create a 32-bit configuration file

~/.makepkg.i686.conf
	
CARCH="i686"
CHOST="i686-unknown-linux-gnu"
CFLAGS="-m32 -march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong"
CXXFLAGS="${CFLAGS}"
LDFLAGS="-m32 -Wl,-O1,--sort-common,--as-needed,-z,relro"

and invoke makepkg as such

$ linux32 makepkg --config ~/.makepkg.i686.conf

问题处理

CFLAGS/CXXFLAGS/CPPFLAGS in makepkg.conf do not work for QMAKE based packages

Qmake automatically sets the variable CFLAGS and CXXFLAGS according to what it thinks should be the right configuration. In order to let qmake use the variables defined in the makepkg configuration file, you must edit the PKGBUILD and pass the variables QMAKE_CFLAGS_RELEASE and QMAKE_CXXFLAGS_RELEASE to qmake. For example:

PKGBUILD
...
build() {
  cd "$srcdir/$_pkgname-$pkgver-src"
  qmake-qt4 "$srcdir/$_pkgname-$pkgver-src/$_pkgname.pro" \
    PREFIX=/usr \
    QMAKE_CFLAGS_RELEASE="${CFLAGS}"\
    QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}"

  make
}
...

Alternatively, for a system wide configuration, you can create your own qmake.conf and set the QMAKESPEC environment variable.

Specifying install directory for QMAKE based packages

The makefile generated by qmake uses the environment variable INSTALL_ROOT to specify where the program should be installed. Thus this package function should work:

PKGBUILD
...
package() {
	cd "$srcdir/${pkgname%-git}"
	make INSTALL_ROOT="$pkgdir" install
}
...

Note, that qmake also has to be configured appropriately. For example put this in your .pro file:

YourProject.pro
...
target.path = /usr/local/bin
INSTALLS += target
...

WARNING:Referencing $srcdir in PKGBUILD

有时 $pkgdir$srcdir 进入了软件包中的文件,用下面命令检查:

grep -R "$(pwd)/src" pkg/

讨论此问题的链接

参阅