Is it possible to install RPM build on Debian?

0

I have a Docker-based Debian Sid build environment for Go. The build script of an is configured to build both .deb and .rpm.

The rpm build process of a component I wish to build requires though the tool rpmbuild.

Is it possible to install rpmbuild on Debian or should I better try another Linux distro?

J. Doe

Posted 2019-09-07T06:38:45.343

Reputation: 317

Answers

0

Yes, you can install the rpm package which provides /usr/bin/rpmbuild.

Personally I prefer building my packages on the exact same OS as where the package will be installed to avoid dependency problems.

Chris Maes

Posted 2019-09-07T06:38:45.343

Reputation: 371