Flatpak metadata for Sketchy Maze.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
rm -rf .flatpak-builder build
|
|
|
|
|
|
|
|
.PHONY: install
|
|
|
|
install: clean
|
|
|
|
flatpak-builder --user --install build com.sketchymaze.Doodle.json
|
|
|
|
|
|
|
|
.PHONY: repo
|
|
|
|
repo: clean
|
|
|
|
flatpak-builder --repo=repo build com.sketchymaze.Doodle.json
|
|
|
|
|
|
|
|
# Run "make bundle" AFTER "make repo" to create the standalone .flatpakref bundle.
|
|
|
|
.PHONY: bundle
|
|
|
|
bundle: repo
|
|
|
|
flatpak build-bundle repo sketchy-maze.flatpak com.sketchymaze.Doodle
|