diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-05-22 19:52:33 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-05-22 19:53:08 +0300 |
commit | b6d1e87092eabb464f33c5087b698672f5251948 (patch) | |
tree | ddc43fce73006299209047fe9c59b85506afa6cc /AppImage/gtk.yml | |
parent | 8c79ce1e1639edf1eae0c8323fd301948ebb84e3 (diff) | |
download | sciteco-b6d1e87092eabb464f33c5087b698672f5251948.tar.gz |
build and upload AppImages as part of nightly builds
Diffstat (limited to 'AppImage/gtk.yml')
-rwxr-xr-x | AppImage/gtk.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/AppImage/gtk.yml b/AppImage/gtk.yml new file mode 100755 index 0000000..b6304bf --- /dev/null +++ b/AppImage/gtk.yml @@ -0,0 +1,29 @@ +app: sciteco-gtk + +# We currently use paths hardcoded at build-time. +# Alternatively, it would be possible to customize the AppRun script or +# add a wrapper that sets $SCITECOPATH. +union: true + +ingredients: + packages: + - sciteco-gtk + dist: focal + sources: + - deb http://archive.ubuntu.com/ubuntu/ focal main universe +# ppas: +# - robin-haberkorn/sciteco + script: + - wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-common_nightly_ubuntu-20.04_all.deb" + - wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-gtk_nightly_ubuntu-20.04_all.deb" + post_script: + - dpkg -I sciteco-gtk*.deb | grep "Version:" | cut -d':' -f2 | cut -d'+' -f1 | sed 's/^[ ]*//g' >VERSION + +script: + # FIXME: There should perhaps be a unique name in the desktop file, so it does not conflict with the Curses version. + - mv ./usr/share/applications/sciteco.desktop ./sciteco-gtk.desktop + - cp ./usr/share/icons/hicolor/256x256/apps/sciteco.png ./sciteco.png + - rm -rf ./usr/share/icons + # Thinning: These documentation files are pointless. + # SciTECO comes with its own online help system. + - rm -rf ./usr/share/doc ./usr/share/man |