Translations:Basic guide to write Gentoo Ebuilds/3/zh-cn
From Gentoo Wiki
ebuild 文件是文本文件,它通常储存于 repository ,供 Gentoo 包管理器使用,它标识一个特定的软件包,以及告诉 Gentoo 包管理器如何处理它。ebuild 使用 bash 类似语法风格,并通过 软件包管理器规范使用EAPI 来控制版本。
The ebuild file format is in its basic form a subset of the format of a bash script. The interpreter is assumed to be GNU bash
Ebuilds 包含相关可用软件的每个版本的元数据(名称、版本号、许可证、主页网址……)、依赖信息(构建时和运行时),以及有关如何构建和安装软件的说明(配置、编译、构建、安装、测试……)。