https://github.com/nedrichards/gimp-flatpak
Flatpak recipe for the Gimp developer edition
https://github.com/nedrichards/gimp-flatpak
Last synced: about 14 hours ago
JSON representation
Flatpak recipe for the Gimp developer edition
- Host: GitHub
- URL: https://github.com/nedrichards/gimp-flatpak
- Owner: nedrichards
- Created: 2017-08-30T20:44:00.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-15T22:39:28.000Z (over 7 years ago)
- Last Synced: 2025-02-22T22:22:19.957Z (4 months ago)
- Size: 79.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gimp-flaptak
Flatpak recipe for the Gimp. This is an adapatation of the upstream manifest to work with the latest developer release rather than just git.Installing:
-----------
If you just want to run the app then install the [prebuilt flatpak bundle](https://github.com/nedrichards/gimp-flatpak/raw/master/org.gimp.GIMP.flatpak). Just download it and double click to install.Instructions:
-------------(1) Install the flatpak repository for GNOME:
```
flatpak remote-add --from gnome https://sdk.gnome.org/gnome.flatpakrepo```
(2) Install the required runtimes
```
flatpak install gnome org.gnome.Sdk
flatpak install gnome org.gnome.Platform
```
(3) Build the app from this directory:
```
flatpak-builder --force-clean --ccache --require-changes --repo=repo app org.gimp.GIMP.json
```
(4) Add a remote to your local repo and install it:
```
flatpak --user remote-add --no-gpg-verify gimp-repo /path/to/your/flatpak/repo
flatpak --user install gimp-repo org.gimp.GIMP
```
(5) Run the GIMP:
```
flatpak run org.gimp.GIMP
```Gives you the list. You can access files within your home folder by default.
Note that if you do further changes in the `appdir` (e.g. to the metadata) you'll need to update before running it again:
```
flatpak --user update org.gimp.GIMP
```Last, you can bundle it to a file with the `build-bundle` subcommand:
```
flatpak build-bundle /path/to/your/flatpak/repo org.gimp.GIMP.flatpak org.gimp.GIMP
```