diff .builds/linux.yml @ 343:1faa72660932

*: transfer back to cmake from autotools autotools just made lots of things more complicated than they should have and many things broke (i.e. translations)
author Paper <paper@paper.us.eu.org>
date Thu, 20 Jun 2024 05:56:06 -0400
parents 3c755136f074
children 676b9967d8c6
line wrap: on
line diff
--- a/.builds/linux.yml	Thu Jun 20 03:03:05 2024 -0400
+++ b/.builds/linux.yml	Thu Jun 20 05:56:06 2024 -0400
@@ -20,12 +20,10 @@
   - build: |
       # build
       cd minori
-      autoreconf -i
       mkdir build
       cd build
-      ../configure
+      cmake .. -G "Unix Makefiles"
       make
-      sudo make install
 
       # resources
       mkdir -p rc
@@ -35,7 +33,7 @@
       # 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
+      LD_LIBRARY_PATH=. ./linuxdeploy --appdir Minori --executable ./minori -d rc/Minori.desktop -i rc/Minori.svg --output appimage
 artifacts:
   - minori/build/Minori-x86_64.AppImage
 triggers: