├── Makefile ├── README ├── README.md ├── game-to-flatpak ├── lib ├── flatpak-game.lua ├── libraries-cleanup.lua └── utils.lua ├── run-tests.lua └── tests ├── BaseballStars2.sh-config.lua ├── deb-download.html ├── gog_another_world_20th_anniversary_edition_2.0.0.2.sh-header ├── hello_2.9-2+deb8u1_amd64 ├── hello_2.9-2+deb8u1_arm64 ├── hello_2.9-2+deb8u1_i386 ├── i386 └── hello_2.9-2+deb8u1_i386 ├── libcaca.so.0 ├── libcaca0_0.99.beta17-2.1ubuntu2_amd64.deb ├── libcaca0_0.99.beta18-1ubuntu5_i386.deb ├── lugaru-full-linux-x86-1.0c.bin-config.luac ├── lugaru-full-linux-x86-1.0c.bin-header ├── mixed └── withparen(foo) │ ├── hello_2.9-2+deb8u1_amd64 │ └── hello_2.9-2+deb8u1_i386 └── x86_64 └── hello_2.9-2+deb8u1_amd64 /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/README.md -------------------------------------------------------------------------------- /game-to-flatpak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/game-to-flatpak -------------------------------------------------------------------------------- /lib/flatpak-game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/lib/flatpak-game.lua -------------------------------------------------------------------------------- /lib/libraries-cleanup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/lib/libraries-cleanup.lua -------------------------------------------------------------------------------- /lib/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/lib/utils.lua -------------------------------------------------------------------------------- /run-tests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/run-tests.lua -------------------------------------------------------------------------------- /tests/BaseballStars2.sh-config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/BaseballStars2.sh-config.lua -------------------------------------------------------------------------------- /tests/deb-download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/deb-download.html -------------------------------------------------------------------------------- /tests/gog_another_world_20th_anniversary_edition_2.0.0.2.sh-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/gog_another_world_20th_anniversary_edition_2.0.0.2.sh-header -------------------------------------------------------------------------------- /tests/hello_2.9-2+deb8u1_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/hello_2.9-2+deb8u1_amd64 -------------------------------------------------------------------------------- /tests/hello_2.9-2+deb8u1_arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/hello_2.9-2+deb8u1_arm64 -------------------------------------------------------------------------------- /tests/hello_2.9-2+deb8u1_i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/hello_2.9-2+deb8u1_i386 -------------------------------------------------------------------------------- /tests/i386/hello_2.9-2+deb8u1_i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/i386/hello_2.9-2+deb8u1_i386 -------------------------------------------------------------------------------- /tests/libcaca.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/libcaca.so.0 -------------------------------------------------------------------------------- /tests/libcaca0_0.99.beta17-2.1ubuntu2_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/libcaca0_0.99.beta17-2.1ubuntu2_amd64.deb -------------------------------------------------------------------------------- /tests/libcaca0_0.99.beta18-1ubuntu5_i386.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/libcaca0_0.99.beta18-1ubuntu5_i386.deb -------------------------------------------------------------------------------- /tests/lugaru-full-linux-x86-1.0c.bin-config.luac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/lugaru-full-linux-x86-1.0c.bin-config.luac -------------------------------------------------------------------------------- /tests/lugaru-full-linux-x86-1.0c.bin-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/lugaru-full-linux-x86-1.0c.bin-header -------------------------------------------------------------------------------- /tests/mixed/withparen(foo)/hello_2.9-2+deb8u1_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/mixed/withparen(foo)/hello_2.9-2+deb8u1_amd64 -------------------------------------------------------------------------------- /tests/mixed/withparen(foo)/hello_2.9-2+deb8u1_i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/mixed/withparen(foo)/hello_2.9-2+deb8u1_i386 -------------------------------------------------------------------------------- /tests/x86_64/hello_2.9-2+deb8u1_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadess/flatpak-games/HEAD/tests/x86_64/hello_2.9-2+deb8u1_amd64 --------------------------------------------------------------------------------