I have made a very simple terminal game: https://github.com/Souravgoswami/t-hangman
I have also created the Deb file.
We surely can move the source code to /usr/bin/ directory and the word file to /usr/share/t-hangman on any Linux system to get the source code running.
But the problem is that installing dependency (only Ruby) manually, and also moving the source code, changing permissions to 755 and setting root as owner may be confusing to some people.
Can I convert the Debian package into Arch Linux tar.gz package securely so that we can run pacman -U t-hangman-v3.0.tar.gz
and install it?
EDIT:
A stackexchange post suggests using dpkg on Arch Linux - I think that's not a good choice, in fact the uploader of dpkg forbids "The Debian Package Manager. Don't use it instead of Arch's 'pacman'." AUR Link
pacman -U <...>
. It says:`loading packages...
error: invalid package version in t-hangman-3.0-any.pkg.tar.xz
error: 't-hangman-3.0-any.pkg.tar.xz': invalid or corrupted package`
– 15 Volts May 12 '19 at 22:27