Install tar.gz , but no configure folder on install file
Solution 1:
There's no configure
file because the archive contains binaries.
The executable is in /bin/
: assuming that you extracted the folder in ~/Downloads
, you can directly execute the program making it executable by running
chmod +x ~/Downloads/RoKiSim/bin/RoKiSim
and executing it by running
~/Downloads/RoKiSim/bin/RoKiSim
To install it, I suggest you to move the folder to /opt/
by running
sudo mv ~/Downloads/RoKiSim/ /opt/
to make the program executable by running
chmod +x /opt/RoKiSim/bin/RoKiSim
and to add a symbolic link to /usr/bin/
by running
sudo ln -s /opt/RoKiSim/bin/RoKiSim /usr/bin/rokisim
After that, you'll be able to run the program just by running rokisim
.
Solution 2:
Search for autogen.sh
or configure
and start the script. After that make
and make install
.