diff options
author | raveit65 <[email protected]> | 2020-04-02 18:55:00 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-02 19:27:51 +0200 |
commit | 5d354112cbe332bd4b21d5d47d34306fb5220060 (patch) | |
tree | 91359cf289b50189397dbe19098025c5ef48e767 | |
parent | 2ff6b200f17523022dab71db2b8def84e51630bb (diff) | |
download | eom-5d354112cbe332bd4b21d5d47d34306fb5220060.tar.bz2 eom-5d354112cbe332bd4b21d5d47d34306fb5220060.tar.xz |
Travis CI: build with mate-common-1.24.1 tarball
add missing requires autoconf-archive (fedora)
-rw-r--r-- | .build.yml | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -58,6 +58,7 @@ requires: fedora: # Useful URL: https://src.fedoraproject.org/cgit/rpms/eom.git + - autoconf-archive - dbus-glib-devel - clang - clang-analyzer @@ -134,6 +135,17 @@ before_scripts: - egrep -lRZ 'G_GNUC_BEGIN_IGNORE_DEPRECATIONS' . | xargs -0 -l sed -i -e 's/G_GNUC_BEGIN_IGNORE_DEPRECATIONS/ /g' - egrep -lRZ 'G_GNUC_END_IGNORE_DEPRECATIONS' . | xargs -0 -l sed -i -e 's/G_GNUC_END_IGNORE_DEPRECATIONS/ /g' - fi + - cd ${START_DIR} + - '[ -f mate-common-1.24.1.tar.xz ] || curl -Ls -o mate-common-1.24.1.tar.xz https://github.com/mate-desktop/mate-common/releases/download/v1.24.1/mate-common-1.24.1.tar.xz' + - tar xf mate-common-1.24.1.tar.xz + - cd mate-common-1.24.1 + - 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 build_scripts: - ./autogen.sh |