Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

I tested today with my own game, and running in Linux is not supported. The app doesnt do anything when I click run.

I tried opening the game folder to see if I could understand what was happening, and it opened the contents of the .love file (which it shouldn't)

Unless things have changed recently, currently you need to provide an executable, just providing a .love is not enough.

You can make a Love2D executable by concatenating the love executable and the .love file like:

cat love myGame.love > myGame

You'll also need to provide the .so shared object files that Love2D needs (I can't remember what the command is, nor the complete list of .so files to include, but the end result should look like:

path/to/myGame/
               myGame
               openAL.so
               luajit.so
               sdl.so

(Again, I'm not sure what the .so files are, but that's the gist of it...)