3.10. An example SPEC file for a program written in bash
This section shows an example SPEC file for the bello program that was written in bash.
An example SPEC file for the bello program written in bash
Name: bello Version: 0.1 Release: 1%{?dist} Summary: Hello World example implemented in bash script License: GPLv3+ URL: https://www.example.com/%{name} Source0: https://www.example.com/%{name}/releases/%{name}-%{version}.tar.gz Requires: bash BuildArch: noarch %description The long-tail description for our Hello World Example implemented in bash script. %prep %setup -q %build %install mkdir -p %{buildroot}/%{_bindir} install -m 0755 %{name} %{buildroot}/%{_bindir}/%{name} %files %license LICENSE %{_bindir}/%{name} %changelog * Tue May 31 2016 Adam Miller <maxamillion@fedoraproject.org> - 0.1-1 - First bello package - Example second item in the changelog for version-release 0.1-1
The BuildRequires
directive, which specifies build-time dependencies for the package, was deleted because there is no building step for bello
. Bash is a raw interpreted programming language, and the files are just installed to their location on the system.
The Requires
directive, which specifies run-time dependencies for the package, include only bash
, because the bello
script requires only the bash
shell environment to execute.
The %build
section, which specifies how to build the software, is blank, because a bash
does not need to be built.
For installing bello
you only need to create the destination directory and install the executable bash
script file there. Hence, you can use the install
command in the %install
section. RPM macros allow to do this without hardcoding paths.
Ressources supplémentaires