blob: 675b66c7371b0fc4ef6b22a753d74b8504e685d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
app: sciteco-curses
ingredients:
packages:
- sciteco-curses
dist: focal
sources:
- deb http://archive.ubuntu.com/ubuntu/ jammy main universe
# ppas:
# - robin-haberkorn/sciteco
script:
- wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-common_nightly_ubuntu-22.04_all.deb"
- wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-curses_nightly_ubuntu-22.04_amd64.deb"
post_script:
- dpkg -I sciteco-curses*.deb | grep "Version:" | cut -d':' -f2 | cut -d'+' -f1 | sed 's/^[ ]*//g' >VERSION
script:
# This is currently not installed by sciteco-curses.
# FIXME: There should perhaps be a unique name in the desktop file, so it does not conflict with the Gtk version.
- wget -O sciteco-curses.desktop -c "https://raw.githubusercontent.com/rhaberkorn/sciteco/master/src/sciteco.desktop"
- sed -i -e 's@gsciteco@sciteco@g' sciteco-curses.desktop
- echo 'Terminal=true' >>sciteco-curses.desktop
- wget -O sciteco.png -c "https://raw.githubusercontent.com/rhaberkorn/sciteco/master/ico/sciteco-256.png"
- mkdir -p ./usr/share/metainfo/
- wget -O ./usr/share/metainfo/sciteco-curses.appdata.xml -c "https://raw.githubusercontent.com/rhaberkorn/sciteco/master/AppImage/sciteco-curses.appdata.xml"
# Thinning: These documentation files are pointless.
# SciTECO comes with its own online help system.
- rm -rf ./usr/share/doc ./usr/share/man
|