1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:02:08 +02:00
tldr/pages/linux/rpmbuild.md
Alejandro Cervera 2862a8c713
pages/linux/*: replace broken links (#12850)
Co-authored-by: spageektti <git@spageektti.cc>
2024-05-28 18:25:30 +02:00

423 B

rpmbuild

RPM Package Build tool. More information: https://manned.org/man/rpmbuild.

  • Build binary and source packages:

rpmbuild -ba {{path/to/spec_file}}

  • Build a binary package without source package:

rpmbuild -bb {{path/to/spec_file}}

  • Specify additional variables when building a package:

rpmbuild -bb {{path/to/spec_file}} --define "{{variable1}} {{value1}}" --define "{{variable2}} {{value2}}"