Skip to content
Snippets Groups Projects
Select Git revision
  • ef95eacea64b1b982c38646a11b25835462c8cb7
  • main default protected
2 results

README.md

Blame
  • buildAppImage.sh 307 B
    #! /bin/bash
    
    rm -rf AppDir && cp -r ../AppDirTemplate AppDir && cmake .. -DCMAKE_INSTALL_PREFIX=/usr && make -j && make install DESTDIR=AppDir && linuxdeploy --appdir AppDir -d AppDir/macaon.desktop -i AppDir/macaon.svg --output appimage -l $(ldd AppDir/usr/bin/macaon | grep "stdc++" | awk '{print $3}')