diff options
author | raveit65 <[email protected]> | 2020-04-02 14:42:48 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-02 16:26:47 +0200 |
commit | b67b9d7e7b632458584f27b5f895759c544752f4 (patch) | |
tree | de057aba6eae799cfd51f9fb1a309c5063f3de55 | |
parent | 0017aef8ca970a8ef0c4881704a16d8ed7bd5ae2 (diff) | |
download | atril-b67b9d7e7b632458584f27b5f895759c544752f4.tar.bz2 atril-b67b9d7e7b632458584f27b5f895759c544752f4.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
@@ -56,6 +56,7 @@ requires: fedora: # Useful URL: https://src.fedoraproject.org/cgit/rpms/atril.git + - autoconf-archive - cairo-gobject-devel - caja-devel - clang @@ -136,6 +137,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 |