Author Topic: [Solved] OXCE+ installation steps on Ubuntu linux  (Read 3679 times)

niculinux

  • Guest
[Solved] OXCE+ installation steps on Ubuntu linux
« on: November 26, 2017, 01:27:46 am »
After have been hunting  the forum high and low actually managed to run the openxcom extended+  executable on linux!

So please go to the Meridian builds page here

And than install SDL libs provided in the repositories

Code: [Select]
sudo apt install --no-install-recommends libsdl1.2debian libsdl-gfx1.2 libsdl-image1.2 libsdl-mixer1.2
Worked in Ubuntu 16.04, so yaml libs seems to be non necessary, unless you want to make anotehr and/or a custom build (it's used to compile the ececutable)

Hope this may help :)

Edit: better always use the --no-install-recommends parameter :)
« Last Edit: February 11, 2023, 04:27:59 pm by Meridian »

Offline Stoddard

  • Colonel
  • ****
  • Posts: 485
  • in a fey mood
    • View Profile
    • Linux builds & stuff
Re: Openxcom+ installation steps on Ubuntu linux
« Reply #1 on: November 28, 2017, 11:08:07 pm »

Worked in Ubuntu 16.04, so yaml libs seems to be non necessary, unless you want to make anotehr and/or a custom build (it's used to compile the ececutable)



YAML lib is compiled in statically, thus no need to install it.


Offline tkzv

  • Commander
  • *****
  • Posts: 583
    • View Profile
Re: Openxcom+ installation steps on Ubuntu linux
« Reply #2 on: November 29, 2017, 08:17:21 pm »
YAML lib is compiled in statically, thus no need to install it.
How do you do it? Did you make your own yaml-cpp package, or do you use somebody's else? Could you point me at a good manual on making Ubuntu packages? When I tried OXCE+ on Ubuntu, I didn't find 0.5.3 and failed to make my own. And the site with distributions was inaccessible.

Offline Yankes

  • Commander
  • *****
  • Posts: 3207
    • View Profile
Re: Openxcom+ installation steps on Ubuntu linux
« Reply #3 on: November 30, 2017, 01:34:19 am »
one solution is download source code and compile it as part of binary.

example of this is
https://github.com/Yankes/OpenXcom/blob/OpenXcomExtended/src/Makefile.mxe
only caveat is this is for windows exe but still gcc build chain and it could be change to linux binary
« Last Edit: November 30, 2017, 01:37:37 am by Yankes »

Offline tkzv

  • Commander
  • *****
  • Posts: 583
    • View Profile
Re: Openxcom+ installation steps on Ubuntu linux
« Reply #4 on: December 02, 2017, 08:11:49 pm »
one solution is download source code and compile it as part of binary.

example of this is
https://github.com/Yankes/OpenXcom/blob/OpenXcomExtended/src/Makefile.mxe
only caveat is this is for windows exe but still gcc build chain and it could be change to linux binary
Thanks, I can figure it out from here.