Mercurial > minori
view .builds/linux.yml @ 261:3ec7804abf17
include: make header guards more sane
The C++ standard[1] says:
Each identifier that contains a double underscore __ or
begins with an underscore followed by an uppercase letter
is reserved to the implementation for any use.
[1]: https://timsong-cpp.github.io/cppwp/n4659/lex.name#3.1
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 03 Apr 2024 20:04:28 -0400 |
parents | 862d0d8619f6 |
children | bf89fbf7ff38 |
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.png rc/Minori.png # 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.png --output appimage artifacts: - minori/build/Minori-x86_64.AppImage triggers: - action: email condition: failure to: Paper <paper@paper.us.eu.org>