It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Hello fellow Linux gamers!

Here you can find informations about ./play.it, a tool building packages for Debian, Arch Linux, Gentoo and any derivative (Ubuntu, Manjaro, Linux Mint, etc.) from your installers for Man O' War: Corsair - Warhammer Naval Battles.
These packages can be installed easily with your favourite packages manager.

Download links and usage instructions can be found on the following page:
Man O' War: Corsair - Warhammer Naval Battles

We hope you will enjoy the ease-of-use provided by this tool as much as we enjoy writing and tweaking it ;)

Here you go for more supported games!

-----

Salut camarades Linuxiens !

Vous trouverez ici des informations à propos de ./play.it, un outil construisant des paquets pour Debian, Arch Linux, Gentoo ou nʼimporte quelle distribution dérivée de celles-ci (Ubuntu, Manjaro, Linux Mint, etc.) à partir de vos installateurs pour Man O' War: Corsair - Warhammer Naval Battles.
Ces paquets sʼinstallent facilement via votre gestionnaire de paquets habituel.

Les liens de téléchargement et les instructions dʼutilisation se trouvent sur la page suivante :
Man O' War: Corsair - Warhammer Naval Battles

Nous espérons que vous apprécierez le confort apporté par cet outil autant que nous apprécions lʼécrire et lʼaméliorer ;)

Pour plus de jeux, rendez-vous par ici !
This thread will no longer be updated, see this post on the general forums for more details: End of website maintenance
avatar
vv221: Hello fellow Linux gamers!
Thanks so much - this took a long time due to the large size of the game, but it worked almost perfectly for me on Xubuntu 22.04. Two small issues to point out:-
(i) The install command generated at the end of re-packaging the files as .debs will not (I think) work on Ubuntu because we must use dpkg -i for this, not apt
(ii) The same install command isn't correctly syntaxed for filepaths with spaces: it has " " around the whole command but also needs ' ' around any folder names with spaces in them. I think most Ubuntu users would find it easier to navigate to the same folder as the .deb files and use this command:-

sudo dpkg -i man-o-war-corsair-models-land_1.4.4-gog38991+20201103.6_all.deb man-o-war-corsair-models_1.4.4-gog38991+20201103.6_all.deb man-o-war-corsair-terrain-1_1.4.4-gog38991+20201103.6_all.deb man-o-war-corsair-terrain-2_1.4.4-gog38991+20201103.6_all.deb man-o-war-corsair-data_1.4.4-gog38991+20201103.6_all.deb man-o-war-corsair_1.4.4-gog38991+20201103.6_amd64.deb

These are already crazy long filenames and if a whole absolute filepath is prefixed onto each one just so our command can work from any folder, this makes the resulting command harder to debug. All we need to do is install 6 .deb files.

Well perhaps this is of use to someone else during the sale.
Post edited January 14, 2023 by evild4ve
avatar
evild4ve: The install command generated at the end of re-packaging the files as .debs will not (I think) work on Ubuntu because we must use dpkg -i for this, not apt
The ability to install local packages with apt has been added with apt 1.1, so I guess it should be available at least since Ubuntu 16.04. I removed the apt version check that used to display the dpkg method on older apt builds, because I do not think there are still a lot of systems out there using apt builds older than 1.1.

If you found a situation where it does not work, please share the command you ran and the output you got.

---
avatar
evild4ve: The same install command isn't correctly syntaxed for filepaths with spaces: it has " " around the whole command but also needs ' ' around any folder names with spaces in them.
I did a quick try with an output directory including spaces, and it seems to generate a correct install command:
$ play.it itch.io/f09f8cb1-windows.zip --output-dir output\ with\ spaces --checksum none
Using /home/jeux/cloud-gardens/archives/itch.io/f09f8cb1-windows.zip
Extracting data from f09f8cb1-windows.zip…
cloud-gardens_1.1.1-itch.2022.03.09+20221229.1_amd64.deb already exists.
cloud-gardens-data_1.1.1-itch.2022.03.09+20221229.1_all.deb already exists.

Install "Cloud Gardens" by running the following commands as root:
apt install "/home/jeux/cloud-gardens/archives/output with spaces/cloud-gardens_1.1.1-itch.2022.03.09+20221229.1_amd64.deb" "/home/jeux/cloud-gardens/archives/output with spaces/cloud-gardens-data_1.1.1-itch.2022.03.09+20221229.1_all.deb"
Could you please copy here the unexpected result you got?
Post edited January 15, 2023 by vv221