forked from cory/tildefriends
build: A flatpak experiment. I still don't get it.
This commit is contained in:
parent
4b1ebf02e1
commit
177ef1cdcc
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,6 +4,7 @@ db.*
|
||||
deps/ios_toolchain/
|
||||
deps/openssl/
|
||||
dist/
|
||||
.flatpak-builder
|
||||
.keys
|
||||
logs/
|
||||
**/node_modules
|
||||
|
@ -1105,6 +1105,10 @@ out/tildefriends-x86_64.AppImage: out/release/tildefriends out/data.zip
|
||||
appimage: out/tildefriends-x86_64.AppImage
|
||||
.PHONY: appimage
|
||||
|
||||
flatpak: out/
|
||||
flatpak-builder --force-clean --user --install-deps-from=flathub --install --repo=out/flatpak-repo out/flatpak src/com.unprompted.tildefriends.yml
|
||||
.PHONY: flatpak
|
||||
|
||||
clean:
|
||||
rm -rf $(BUILD_DIR)
|
||||
.PHONY: clean
|
||||
|
25
src/com.unprompted.tildefriends.yml
Normal file
25
src/com.unprompted.tildefriends.yml
Normal file
@ -0,0 +1,25 @@
|
||||
id: com.unprompted.tildefriends
|
||||
runtime: org.freedesktop.Platform
|
||||
runtime-version: '23.08'
|
||||
sdk: org.freedesktop.Sdk
|
||||
command: tildefriends-run.sh
|
||||
finish-args:
|
||||
- --share=network
|
||||
modules:
|
||||
- name: tildefriends
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- make release out/data.zip
|
||||
- install -Dm755 out/release/tildefriends /app/bin/tildefriends
|
||||
- install -D out/data.zip /app/share/data.zip
|
||||
- install -Dm755 tildefriends-run.sh /app/bin/tildefriends-run.sh
|
||||
sources:
|
||||
- type: git
|
||||
url: https://dev.tildefriends.net/cory/tildefriends.git
|
||||
dest: .
|
||||
commit: main
|
||||
- type: script
|
||||
dest-filename: tildefriends-run.sh
|
||||
commands:
|
||||
- mkdir ~/.local/share/applications/tildefriends/
|
||||
- exec tildefriends run -z /app/share/data.zip -d ~/.local/share/applications/tildefriends/db.sqlite
|
Loading…
Reference in New Issue
Block a user