diff options
| author | Leorize <leorize+oss@disroot.org> | 2025-03-12 03:19:16 -0500 |
|---|---|---|
| committer | Mitchell Hashimoto <m@mitchellh.com> | 2025-04-22 10:56:09 -0700 |
| commit | ebc169dbaf817d09cf7da6a816fb8506466e830c (patch) | |
| tree | 89c5b46d5d0d8bf5ad1018a531b1b47140b6ffe5 /dist | |
| parent | 17b0bf585dfa656fc1574d9ae2e8b136d843905a (diff) | |
Fix flatpak packaging to a working state
This should make testing Flatpak builds a lot easier.
To build, enter `flatpak/` directory and run:
flatpak-builder --repo=repo builddir com.mitchellh.ghostty.yml
alternatively, using org.flatpak.Builder flatpak:
flatpak run -p org.flatpak.Builder \
--repo=repo \
builddir \
com.mitchellh.ghostty.yml
The resulting flatpak can be installed using
flatpak install ./repo com.mitchellh.ghostty
Credit of AppStream metadata goes to @yorickpeterse.
Diffstat (limited to 'dist')
| -rw-r--r-- | dist/linux/com.mitchellh.ghostty.metainfo.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dist/linux/com.mitchellh.ghostty.metainfo.xml b/dist/linux/com.mitchellh.ghostty.metainfo.xml new file mode 100644 index 000000000..e504805da --- /dev/null +++ b/dist/linux/com.mitchellh.ghostty.metainfo.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<component type="desktop-application"> + <id>com.mitchellh.ghostty</id> + <launchable type="desktop-id">com.mitchellh.ghostty.desktop</launchable> + <name>Ghostty</name> + <url type="homepage">https://ghostty.org/</url> + <summary>Ghostty is a fast, feature-rich, and cross-platform terminal emulator</summary> + <metadata_license>MIT</metadata_license> + <project_license>MIT</project_license> + <content_rating type="oars-1.1" /> + <developer id="id.mitchellh"> + <name>Mitchell Hashimoto</name> + </developer> + <description> + <p> + Ghostty is a terminal emulator that differentiates itself by being fast, + feature-rich, and native. While there are many excellent terminal + emulators available, they all force you to choose between speed, + features, or native UIs. Ghostty provides all three. + </p> + </description> + + <releases> + <release version="1.0.1" date="2024-12-31"> + <url type="details">https://ghostty.org/docs/install/release-notes/1-0-1</url> + </release> + </releases> +</component> |
