You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
2.1 KiB
45 lines
2.1 KiB
sudo: required # needed for trusty beta
|
|
dist: trusty # needed for HarfBuzz
|
|
|
|
language: c
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
before_script:
|
|
- sudo add-apt-repository -y ppa:as-bahanta/raqm
|
|
- sudo add-apt-repository ppa:dns/gnu -y
|
|
- sudo apt-key update -q
|
|
- sudo apt-get update -q
|
|
- sudo apt-get install --only-upgrade autoconf
|
|
- sudo apt-get install -y libraqm-dev libfreetype6-dev libharfbuzz-dev libfribidi-dev
|
|
|
|
script: |
|
|
set -e
|
|
set -x
|
|
export CFLAGS="-Wno-deprecated-declarations -Wdeclaration-after-statement -Wno-error=unused-variable"
|
|
if [ "$TRAVIS_COMPILER" == "gcc" ] ; then
|
|
./configure --with-quantum-depth=16 --without-perl --prefix=/usr
|
|
else
|
|
./configure --disable-openmp --with-quantum-depth=16 --without-perl --prefix=/usr
|
|
fi
|
|
make
|
|
make install DESTDIR=$(readlink -f appdir)
|
|
# Generate AppImage
|
|
mkdir -p appdir/usr/share/applications/ ; cp imagemagick.desktop appdir/usr/share/applications/
|
|
mkdir -p appdir/usr/share/icons/hicolor/128x128/apps/ ; touch appdir/usr/share/icons/hicolor/128x128/apps/imagemagick.png # FIXME
|
|
wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
|
|
chmod a+x linuxdeployqt*.AppImage
|
|
unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
|
|
export VERSION=$(git rev-parse --short HEAD)-$CC
|
|
./linuxdeployqt*.AppImage ./appdir/usr/share/applications/imagemagick.desktop -bundle-non-qt-libs
|
|
./linuxdeployqt*.AppImage --appimage-extract
|
|
rm ./appdir/AppRun ; cp AppRun appdir/ ; chmod a+x ./appdir/AppRun # Replace symlink with custom script
|
|
PATH=./squashfs-root/usr/bin:$PATH ./squashfs-root/usr/bin/appimagetool -g ./appdir/
|
|
|
|
after_success:
|
|
- find ./appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq
|
|
- if [ "$TRAVIS_BRANCH" == "$TRAVIS_TAG" ] ; then wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh ; bash upload.sh ImageMagick*AppImage* ; fi
|
|
- if [ "$TRAVIS_BRANCH" != "$TRAVIS_TAG" ] ; then curl --upload-file ./ImageMagick*.AppImage https://transfer.sh/ImageMagick-git.$(git rev-parse --short HEAD)-x86_64.AppImage ; fi
|