Last active
October 16, 2024 13:19
-
-
Save Et7f3/d45b8338445489b733eefd6f7264007e to your computer and use it in GitHub Desktop.
Run this command to build the .rpm: rpmbuild -ba maria-work-around.spec --define "dist el8" --define "_rpmdir `pwd`"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Name: maria-workaround | |
Version: 1.0 | |
Release: 1%{?dist} | |
License: ASL 2.0 | |
BuildArch: noarch | |
Summary: Meta package that fix typo | |
requires: mariadb | |
provides: MariaDB-client | |
%description | |
%{summary} | |
Quick fix because centreon didn't packaged MariaDB-client | |
%prep | |
# nothing to do | |
%build | |
# nothing to do | |
%install | |
# nothing to do | |
%files | |
# no files - it's just a meta package. | |
%changelog | |
* Tue Mar 19 2024 Joe Doe <[email protected]> - %{version}-%{release} | |
- initial rpm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Based on answer of SO https://serverfault.com/a/792856/498628