view .builds/linux.yml @ 327:b5d6c27c308f

anime: refactor Anime::SeriesSeason to Season class ToLocalString has also been altered to take in both season and year because lots of locales actually treat formatting seasons differently! most notably is Russian which adds a suffix at the end to notate seasons(??)
author Paper <paper@paper.us.eu.org>
date Thu, 13 Jun 2024 01:49:18 -0400
parents fb0f6b5050ff
children 3c755136f074
line wrap: on
line source

image: debian/bookworm
packages:
  - qtbase5-dev
  - qttools5-dev
  - automake
  - autoconf
  - libtool
  - clang
  - libcurl4-openssl-dev
  - wget
  - fuse
  - file
  - xorg-dev # shouldn't install Xorg!
  - libwayland-dev
  - pkg-config
  - libglib2.0-dev
sources:
  - https://hg.sr.ht/~mrpapersonic/minori
tasks:
  - build: |
      # build
      cd minori
      autoreconf -i
      mkdir build
      cd build
      ../configure
      make
      sudo make install

      # resources
      mkdir -p rc
      cp ../rc/sys/linux/Minori.desktop rc/Minori.desktop
      cp ../rc/sys/linux/Minori.svg rc/Minori.svg

      # use linuxdeploy to make an appimage
      wget -O linuxdeploy "https://github.com/linuxdeploy/linuxdeploy/releases/download/1-alpha-20231026-1/linuxdeploy-x86_64.AppImage"
      chmod +x linuxdeploy
      LD_LIBRARY_PATH=/usr/local/lib ./linuxdeploy --appdir Minori --executable $(which minori) -d rc/Minori.desktop -i rc/Minori.svg --output appimage
artifacts:
  - minori/build/Minori-x86_64.AppImage
triggers:
  - action: email
    condition: failure
    to: Paper <paper@paper.us.eu.org>