forked from herace/AnimeEffects
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed root directory in travis.yml Added target Updated travis Updated location of pro Trying to cp binary, as i cannot manage to install it Fixed app name in travis.yml Changed app name Added data to appdir Added -R to cp
- Loading branch information
Showing
4 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
os: linux | ||
dist: xenial | ||
language: cpp | ||
compiler: gcc | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- sourceline: ppa:beineri/opt-qt-5.14.1-xenial | ||
packages: | ||
- qt514base | ||
- qt514x11extras | ||
- qt514tools | ||
- libgl1-mesa-dev | ||
- libopencv-dev | ||
|
||
install: | ||
- source /opt/qt*/bin/qt*-env.sh | ||
|
||
script: | ||
- qmake src/AnimeEffects.pro -r CONFIG+=release PREFIX=/usr | ||
- make -j$(nproc) | ||
- make INSTALL_ROOT=appdir install | ||
- mkdir -p appdir/usr/bin | ||
- cp AnimeEffects appdir/usr/bin/ | ||
- cp -R data appdir/usr/bin/data | ||
- find 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 | ||
- ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -appimage | ||
|
||
after_success: | ||
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh | ||
- bash upload.sh AnimeEffects*.AppImage* | ||
|
||
branches: | ||
except: | ||
- # Do not build tags that we create when we upload to GitHub Releases | ||
- /^(?i:continuous)/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[Desktop Entry] | ||
Name=AnimeEffects | ||
GenericName=2D Animation tool | ||
Comment=2D Animation tool | ||
Exec=AnimeEffects | ||
Icon=AnimeEffects | ||
Type=Application | ||
Categories=Graphics;2DGraphics; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters