{"id":47596649,"url":"https://github.com/andy5995/moon-lander-appimage","last_synced_at":"2026-04-01T18:13:39.867Z","repository":{"id":345444907,"uuid":"1185907531","full_name":"andy5995/moon-lander-appimage","owner":"andy5995","description":"Moon Lander AppImage","archived":false,"fork":false,"pushed_at":"2026-03-20T07:18:48.000Z","size":48,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"trunk","last_synced_at":"2026-03-31T09:47:48.457Z","etag":null,"topics":["appimage","games","moon","simulation"],"latest_commit_sha":null,"homepage":"https://github.com/andy5995/moon-lander-appimage/releases","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andy5995.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-19T04:00:58.000Z","updated_at":"2026-03-20T07:18:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/andy5995/moon-lander-appimage","commit_stats":null,"previous_names":["andy5995/moon-lander-appimage"],"tags_count":1,"template":true,"template_full_name":null,"purl":"pkg:github/andy5995/moon-lander-appimage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy5995%2Fmoon-lander-appimage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy5995%2Fmoon-lander-appimage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy5995%2Fmoon-lander-appimage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy5995%2Fmoon-lander-appimage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andy5995","download_url":"https://codeload.github.com/andy5995/moon-lander-appimage/tar.gz/refs/heads/trunk","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy5995%2Fmoon-lander-appimage/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290791,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["appimage","games","moon","simulation"],"created_at":"2026-04-01T18:13:39.326Z","updated_at":"2026-04-01T18:13:39.855Z","avatar_url":"https://github.com/andy5995.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# moon-lander-appimage\n\nUnofficial moon-lander [AppImage](https://appimage.org/), built from the\n[Debian Salsa packaging\nrepo](https://salsa.debian.org/games-team/moon-lander).\n\nClick the [Releases](../../releases) link to download the latest AppImage.\n\n## Running\n\n```bash\nchmod +x moon-lander-*.AppImage\n./moon-lander-*.AppImage\n```\n\n## Updating\n\nThe AppImage supports delta updates via\n[appimageupdatetool](https://github.com/AppImageCommunity/AppImageUpdate):\n\n```bash\nappimageupdatetool moon-lander-*.AppImage\n```\n\nIf the tool isn't available in your distro, you can grab it as an AppImage from\nthe repo above, or install it via [AM](https://github.com/ivan-hc/AM).\n\n## Build locally\n\nYou need Docker (or a compatible runtime) installed.\n\n```bash\n# From the repo root:\nexport HOSTUID=$(id -u) HOSTGID=$(id -g)\ndocker compose -f ./docker-compose.yml run --rm build\n```\n\nThe finished AppImage (and its `.sha256sum` and `.zsync` sidecar files) will\nappear in `./out/`.\n\n### Override the AppImage version label\n\n`VERSION` is used only as a label in the output filename — it does not pin a\npackage version. The source is always cloned from the Salsa repo's default branch.\nThe default is `1.0-10` so overriding it is only needed if you want a different label.\n\n```bash\nVERSION=1.0-11 docker compose -f ./docker-compose.yml run --rm build\n```\n\n### Drop into a shell for debugging\n\n```bash\nexport HOSTUID=$(id -u) HOSTGID=$(id -g)\ndocker compose -f ./docker-compose.yml run --rm build bash\n```\n\n### Override the build script\n\n```bash\nSCRIPT=/workspace/my-custom-script.sh \\\n  docker compose -f ./docker-compose.yml run --rm build\n```\n\n## GitHub Actions\n\nTwo triggers are configured:\n\n| Trigger | What happens |\n|---|---|\n| Push to `trunk` / `main` | Builds the AppImage and publishes/updates the `latest` release |\n| `workflow_dispatch` | Builds the AppImage and uploads it as a workflow artifact (no release) |\n\n## About\n\nBuilt with [andy5995/linuxdeploy](https://hub.docker.com/r/andy5995/linuxdeploy)\n(`v3-jammy`), which bundles\n[linuxdeploy](https://github.com/linuxdeploy/linuxdeploy) and\n[appimagetool](https://github.com/AppImage/appimagetool).\n\nSource: [salsa.debian.org/games-team/moon-lander](https://salsa.debian.org/games-team/moon-lander) —\nthe official Debian packaging repo, which includes the upstream source and all Debian patches.\nPatches are applied via `quilt` before building with plain `make`.\n\n## License\n\nThe build scripts, AppRun, and other files **created by this repository** are\nreleased under the [MIT License](LICENSE).\n\nThe moon-lander game itself is under a different license. The source code is\nbelieved to be GPL-2+, and the data files (sounds, images) may be under\nadditional or different free licenses. See\n[`debian/copyright`](https://salsa.debian.org/games-team/moon-lander/-/blob/master/debian/copyright)\nin the upstream Salsa repository for the authoritative per-file license\ninformation.\n\nThis repository does not distribute the moon-lander source or binaries\ndirectly — the AppImage is built from upstream sources at build time.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandy5995%2Fmoon-lander-appimage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandy5995%2Fmoon-lander-appimage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandy5995%2Fmoon-lander-appimage/lists"}