Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AppImage #140

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fm/qtfm.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Type=Application
Icon=qtfm
Exec=qtfm
Terminal=false
MimeType=application/x-directory;inode/directory
Categories=Utility;FileManager
MimeType=application/x-directory;inode/directory;
Categories=Utility;FileManager;
StartupNotify=false
12 changes: 12 additions & 0 deletions share/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,18 @@ if [ "${OS}" = "Linux" ]; then
make INSTALL_ROOT=`pwd`/pkg install
tree pkg

mkdir $CWD/build8
cd $CWD/build8
qmake -qt=qt5 CONFIG+=release PREFIX=/usr CONFIG+=no_dbus ..
make -j$(nproc)
make INSTALL_ROOT=appdir -j$(nproc) install ; find fm/appdir/
wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
chmod a+x linuxdeployqt-continuous-x86_64.AppImage
unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
./linuxdeployqt-continuous-x86_64.AppImage fm/appdir/usr/share/applications/*.desktop -extra-plugins=iconengines,imageformats -appimage -qmake=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh # TODO: Move to .travis.yml
bash upload.sh QtFM*.AppImage* # TODO: Move to .travis.yml

#echo "===> Building linux64 ..."
#PKG_CONFIG_PATH="${SDK}/lib/pkgconfig:${PKG_CONFIG_PATH}"
#PATH=${SDK}/bin:/usr/bin:/bin
Expand Down