apostrophe/flatpak/uberwriter.json

160 lines
4.5 KiB
JSON
Raw Normal View History

2018-04-04 18:31:54 +00:00
{
2018-04-13 20:03:22 +00:00
"app-id" : "de.wolfvollprecht.UberWriter",
"runtime" : "org.gnome.Platform",
"runtime-version" : "3.26",
"sdk" : "org.gnome.Sdk",
"command" : "uberwriter",
"rename-icon" : "uberwriter",
"finish-args" : [
"--socket=x11",
"--share=ipc",
2018-04-15 16:44:40 +00:00
"--share=network",
2018-04-13 20:03:22 +00:00
"--filesystem=host",
"--env=IN_FLATPAK=1",
"--filesystem=xdg-run/dconf",
"--filesystem=~/.config/dconf:ro",
"--talk-name=ca.desrt.dconf",
2018-05-01 22:46:14 +00:00
"--env=DCONF_USER_CONFIG_DIR=.config/dconf",
"--env=PATH=/app/extensions/TexLive/bin:/app/extensions/TexLive/2018/bin/x86_64-linux:/app/bin:/usr/bin"
2018-04-13 20:03:22 +00:00
],
"build-options" : {
"env" : {
"PYTHON" : "python3",
"IN_FLATPAK" : "1"
2018-04-04 18:31:54 +00:00
}
},
2018-05-01 19:42:24 +00:00
"add-extensions": {
2018-05-01 19:52:02 +00:00
"de.wolfvollprecht.UberWriter.Plugin": {
"directory": "extensions",
"version": "stable",
2018-05-01 19:42:24 +00:00
"subdirectories": true,
"no-autodownload": true,
"autodelete": true
2018-05-01 19:52:02 +00:00
}
2018-05-01 19:42:24 +00:00
},
2018-04-13 20:03:22 +00:00
"modules" : [
2018-04-04 18:31:54 +00:00
{
2018-04-13 20:03:22 +00:00
"name" : "uberwriter",
"sources" : [
{
"type" : "git",
2018-04-14 19:18:48 +00:00
"url" : "git://github.com/wolfv/uberwriter",
2018-04-13 20:03:22 +00:00
"branch" : "master"
}
],
2018-05-05 16:51:47 +00:00
"build-commands": [
"install -Dm644 flatpak/de.wolfvollprecht.UberWriter.appdata.xml /app/share/appdata/de.wolfvollprecht.UberWriter.appdata.xml "
],
2018-04-13 20:03:22 +00:00
"post-install": [
2018-05-01 19:52:02 +00:00
"glib-compile-schemas /app/share/glib-2.0/schemas",
"install -d /app/extensions"
2018-04-13 20:03:22 +00:00
]
},
2018-04-04 18:31:54 +00:00
{
2018-04-13 20:03:22 +00:00
"name" : "pyenchant",
"build-options" : {
"build-args" : [
"--share=network"
]
},
"config-opts" : [
"--module=pyenchant"
],
"sources" : [
{
"type" : "file",
"path" : "pip-download",
"dest-filename" : "configure"
}
]
},
2018-04-04 18:31:54 +00:00
{
2018-04-13 20:03:22 +00:00
"name" : "regex",
"build-options" : {
"build-args" : [
"--share=network"
]
},
"config-opts" : [
"--module=regex"
],
"sources" : [
{
"type" : "file",
"path" : "pip-download",
"dest-filename" : "configure"
}
]
},
2018-04-04 18:31:54 +00:00
{
2018-04-13 20:03:22 +00:00
"name" : "python-Levenshtein",
"build-options" : {
"build-args" : [
"--share=network"
]
},
"config-opts" : [
"--module=python-Levenshtein"
],
"sources" : [
{
"type" : "file",
"path" : "pip-download",
"dest-filename" : "configure"
}
]
},
{
"name" : "pypandoc",
"build-options" : {
"build-args" : [
"--share=network"
]
},
"config-opts" : [
"--module=pypandoc"
],
"sources" : [
{
"type" : "file",
"path" : "pandoc-download",
"dest-filename" : "configure"
}
]
},
2018-04-04 18:31:54 +00:00
{
2018-04-13 20:03:22 +00:00
"name" : "fonts",
"build-options" : {
"build-args" : [
"--share=network"
]
},
"config-opts" : [
""
],
"sources" : [
{
"type" : "file",
"path" : "fonts-download",
"dest-filename" : "configure"
}
]
2018-05-05 20:16:41 +00:00
},
{
"name": "appdata",
"buildsystem": "simple",
"build-commands": [
"mkdir -p /app/share/appdata",
"install -Dm644 de.wolfvollprecht.UberWriter.appdata.xml /app/share/appdata/de.wolfvollprecht.UberWriter.appdata.xml"
],
"sources": [
{
"type": "file",
"path": "de.wolfvollprecht.UberWriter.appdata.xml"
}
]
2018-04-04 18:31:54 +00:00
}
2018-04-13 20:03:22 +00:00
2018-04-13 19:00:16 +00:00
]
2018-05-01 19:52:02 +00:00
}