| Maximum RPM: Taking the Red Hat Package Manager to the Limit | ||
|---|---|---|
| Prev | Appendix E. Concise Spec File Reference | Next |
This section lists the various scriptlets found in a spec file.
Every build scriptlet has the following environment variables defined:
RPM_SOURCE_DIR
RPM_BUILD_DIR
RPM_DOC_DIR
RPM_OPT_FLAGS
RPM_ARCH
RPM_OS
RPM_ROOT_DIR
RPM_BUILD_ROOT
RPM_PACKAGE_NAME
RPM_PACKAGE_VERSION
RPM_PACKAGE_RELEASE
For more information on these environment variables, and build scriptlets in general, please see the section called Build-time Scripts in Chapter 13.
The %prep can contain any valid sh commands.
%prep
|
See also: the section called The %prep Script in Chapter 13.
The %build scriptlet is the second scriptlet executed during a build, immediately after %prep can contain any valid sh commands.
%build
|
See also: the section called The %build Script in Chapter 13.
The %install scriptlet is the third scriptlet executed during a build, immediately after %build any valid sh commands.
%install
|
See also: the section called The %install Script in Chapter 13.
The %cleansh commands.
%clean
|
See also: the section called The %clean Script in Chapter 13.
sh commands.
-n option:
%post bar
%preun -n bar
|
The subpackage name and usage of the -n option must match those defined with the %package directive.
Each scriptlet has the following environment variable defined:
RPM_INSTALL_PREFIX
For more information on this environment variable please see the section called Install/Erase-time Scripts in Chapter 13.
The %post scriptlet executes just after the package is to be installed.
%post
|
See also: the section called The %post Script in Chapter 13.
The %preun scriptlet executes just before the package is to be erased.
%preun
|
See also: the section called The %preun Script in Chapter 13.
The %postun scriptlet executes just after the package is to be erased.
%postun
|
See also: the section called The %postun Script in Chapter 13.
This section describes the verification script.
The %verifyscript scriptlet executes whenever the package is verified using RPM's -V option. The scriptlet can contain any valid sh commands.
See also: the section called Verification-Time Script — The %verifyscript Script in Chapter 13.
| Главная |