Reputation: 53657
I have created rpm for my software which works fine for fedora. But this fails whenever I want to install the same in linux mint. because linux mint supprts .deb file for installation. So I want to create installer package for my software which will be compatible in linux mint.
Upvotes: 0
Views: 550
Reputation: 22428
you can use alien if you want and that's the recommended way to do it actually, but you can install it with rpm too. just install rpm:sudo apt-get install rpm
then run sudo rpm -i package_name
Upvotes: 0
Reputation: 802
Another great tool at your disposal for this would be fpm. It allows to create several different package types from many different things, like rpm's. It currently works with the following:
Sources:
Targets:
You can find it here: https://github.com/jordansissel/fpm
Upvotes: 0
Reputation: 27573
Check out the program alien
, which allows you to manipulate foreign packages on a linux distro. Note that this is fine for installing simple packages, but you should build the package from source if you intend to distribute to a large audience.
Upvotes: 1