Q. I need to build a source RPM, how do I build it?
A. In order to build a source RPM you need to use rpmbuild command. rpmbuild is used to build both binary and source software packages. A package consists of an archive of files and meta-data used to install and erase the archive files. The meta-data includes helper scripts, file attributes, and descriptive information about the package. Packages come in two varieties: binary packages, used to encapsulate software to be installed, and source packages, containing the source code and recipe necessary to produce binary packages.
You need to use .spec file to build the RPM file. Next type rpmbuild command as follows:
# rpmbuild -ba pakagename.spec
For more information, please refer Maximum RPM book.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 4 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
The answer is incorrect.
Once you have all sources and spec, (in rpmbuild/{SOURCES,SPEC} directories
the rpmbuild -bs is what you seek.
see: http://linux.die.net/man/8/rpmbuild
If you have the .src.rpm file, just rpm -ivh .src.rpm. You’ll find the spec file in /usr/src/packages/SPEC directory after instalation.
Whr do I find spec file?
You have to make it yourself (or get someone else to make it for you).