3.12. An example SPEC file for a program written in C
This section shows an example SPEC file for the cello program that was written in the C programming language.
An example SPEC file for the cello program written in C
Name: cello Version: 1.0 Release: 1%{?dist} Summary: Hello World example implemented in C License: GPLv3+ URL: https://www.example.com/%{name} Source0: https://www.example.com/%{name}/releases/%{name}-%{version}.tar.gz Patch0: cello-output-first-patch.patch BuildRequires: gcc BuildRequires: make %description The long-tail description for our Hello World Example implemented in C. %prep %setup -q %patch0 %build make %{?_smp_mflags} %install %make_install %files %license LICENSE %{_bindir}/%{name} %changelog * Tue May 31 2016 Adam Miller <maxamillion@fedoraproject.org> - 1.0-1 - First cello package
The BuildRequires
directive, which specifies build-time dependencies for the package, includes two packages that are needed to perform the compilation build process:
-
The
gcc
package -
The
make
package
The Requires
directive, which specifies run-time dependencies for the package, is omitted in this example. All runtime requirements are handled by rpmbuild
, and the cello
program does not require anything outside of the core C standard libraries.
The %build
section reflects the fact that in this example a Makefile
for the cello program was written, hence the GNU make command provided by the rpmdev-newspec
utility can be used. However, you need to remove the call to %configure
because you did not provide a configure script.
The installation of the cello program can be accomplished by using the %make_install
macro that was provided by the rpmdev-newspec
command. This is possible because the Makefile
for the cello program is available.
Ressources supplémentaires