diff options
Diffstat (limited to 'AppImageBuilder.yml')
-rw-r--r-- | AppImageBuilder.yml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/AppImageBuilder.yml b/AppImageBuilder.yml new file mode 100644 index 0000000..f80d392 --- /dev/null +++ b/AppImageBuilder.yml @@ -0,0 +1,53 @@ +version: 1 +script: + - rm -rf AppDir | true + - mkdir -p AppDir/usr/src + - cp bech32.py AppDir/usr/src + - cp keytree.py AppDir/usr/src + - cp setup.py AppDir/usr/src + - python3 -m pip install -t AppDir/usr/src/frozen_deps AppDir/usr/src + - rm -rf AppDir/usr/src/frozen_deps/Cryptodome/SelfTest + + +AppDir: + path: ./AppDir + + app_info: + id: org.ted.keytree + name: keytree + icon: utilities-terminal + version: 0.1.0 + exec: usr/src/keytree.py + exec_args: $@ + + pacman: + Architecture: x86_64 + include: + - python + exclude: + - perl + - krb5 + - gdbm + - gcc-libs + - openssl + - libtirpc + - libnsl + - libffi + - expat + - zlib + - bzip2 + + runtime: + env: + PATH: '${APPDIR}/usr/bin:${PATH}' + # Set python home + # See https://docs.python.org/3/using/cmdline.html#envvar-PYTHONHOME + PYTHONHOME: '${APPDIR}/usr' + # Path to the site-packages dir or other modules dirs + # See https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH + PYTHONPATH: '${APPDIR}/usr/lib/python3.9/site-packages' + +AppImage: + update-information: 'gh-releases-zsync|AppImageCrafters|keytree|latest|python-appimage-*x86_64.AppImage.zsync' + sign-key: None + arch: x86_64 |