diff options
author | Pablo Barciela <[email protected]> | 2020-02-26 20:27:45 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-02-27 13:13:16 +0100 |
commit | 3b692b11545d9e3c0c0bf701c5841b94dd310d61 (patch) | |
tree | 56dae57e68724acaa9730e82c95452acf18b288d | |
parent | a54ceb4b9992b213dc116f54fe1837f2f3bcafb5 (diff) | |
download | eom-1.22.tar.bz2 eom-1.22.tar.xz |
Travis CI: build mate-desktop from 1.22 branch1.22
-rw-r--r-- | .build.yml | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -59,6 +59,7 @@ requires: - git - gobject-introspection-devel - gtk3-devel + - iso-codes-devel - lcms2-devel - libexif-devel - libjpeg-turbo-devel @@ -105,6 +106,18 @@ before_scripts: - curl -Ls -o debian.sh https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/debian.sh - bash ./debian.sh - fi + # Install mate-desktop from 1.22 branch + - cd ${START_DIR} + - git clone --depth 1 https://github.com/mate-desktop/mate-desktop.git -b 1.22 mate-desktop-1.22 + - cd mate-desktop-1.22 + - ./autogen.sh + - if [ ${DISTRO_NAME} == "debian" -o ${DISTRO_NAME} == "ubuntu" ];then + - ./configure --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu --libexecdir=/usr/lib/x86_64-linux-gnu + - else + - ./configure --prefix=/usr + - fi + - make + - make install after_scripts: - make distcheck |