1
0

13 Commits

Author SHA1 Message Date
aki
b0479bfbf4 feat: Implement Flatpak build system using flatpak-builder in Docker
This commit replaces the previous multi-distribution Docker build system with a unified Flatpak build process executed inside a Docker container. This is the intended final architecture for building Aseprite bundles.

**Key Changes:**

*   **Transition to Flatpak:** The core build logic now uses `flatpak-builder` and a Flatpak manifest (`com.aseprite.Aseprite.yaml`) to compile Aseprite and its dependencies against a standard Flatpak SDK runtime.
*   **Unified Docker Environment:** Replaced distribution-specific `Dockerfile.<distro>` files with a single `Dockerfile` that sets up a consistent environment containing `flatpak-builder` and the necessary Flatpak SDK.
*   **Simplified Makefile:** Removed OS detection logic and multi-distro targets. The Makefile now orchestrates:
    1.  Running `prepare_sources.sh` on the host (still responsible for reliable source fetching/syncing).
    2.  Building the single Flatpak builder Docker image.
    3.  Running `flatpak-builder` inside a *privileged* container (required for `flatpak-builder` sandboxing) to perform the actual build.
    4.  Running `flatpak build-bundle` inside the container.
    5.  Extracting the final `.flatpak` bundle from the container to `./target/aseprite.flatpak`.
*   **Updated .gitignore:** Added `build/`, `target/`, `*.flatpak`, and `*.log` to ignore Flatpak build directories, output bundles, and logs. Removed the old `dependencies` ignore pattern.
*   **Prepare Sources Update:** Modified `prepare_sources.sh` to explicitly initialize `depot_tools` on the host, as this is required before sources are copied into the Flatpak build environment for `gn` usage.
*   **Removal of Old Files:** Deleted `Dockerfile.<distro>`, `Dockerfile.debian`, `Dockerfile.fedora`, `Dockerfile.arch` (multi-distro Dockerfiles), and the original generic `Dockerfile` and `docker-compose.yml`.

**Rationale:**

This refactor moves to the planned final architecture. Building within a Flatpak SDK provides a highly consistent environment independent of the host Linux distribution. The output is a portable `.flatpak` bundle, simplifying distribution and runtime compatibility compared to dynamically linking against varied host libraries. While `prepare_sources.sh` on the host still handles the initial (and potentially rate-limited) source fetching, the subsequent build process is significantly standardized and more reliable.

This architecture is now the **forward-maintained** build method.
2025-05-06 17:02:01 +08:00
aki
2b47036cc8 docs(README): Rewrite README.md from the ground up 2025-05-05 01:20:53 +08:00
nilsve
45184df371
Update README.md 2025-02-05 09:17:00 +01:00
nilsve
c749ea2fed
Update README.md 2024-07-09 11:44:06 +02:00
xackery
fb299896b9 Add non-compose support 2023-10-01 13:52:52 -07:00
Tuna
2d3ec8b873
Add fix for libcrypto error in FAQ 2023-07-06 23:01:22 -06:00
Josh
47eb4fb9d5 Updated to Aseprite v1.2.40 and Skia m102 2023-01-03 19:41:08 -04:00
nilsve
910c68d20b
Update README.md 2022-04-26 15:13:49 +02:00
nils
02647a7ee4 Fix build & compile skia from source 2022-04-06 11:37:51 +02:00
nilsve
df6cf4ddb0
Update README.md 2021-04-16 13:24:13 +02:00
nils
68a9c4cf7d Initial commit 2021-04-16 13:22:50 +02:00
nils
0309364dec Initial commit 2021-04-16 13:19:27 +02:00
nils
1231e4b7f4 Initial commit 2021-04-16 13:15:19 +02:00