diff options
author | raveit65 <[email protected]> | 2020-04-08 16:43:43 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-08 16:43:43 +0200 |
commit | f3d405f6429da5d258d56668aac4d88ec7e46424 (patch) | |
tree | 6e46cdc76ca4a51b1935011b56968bef17ab3437 | |
parent | c3e20b2aa829c1aa961e052423e5388b394c3eca (diff) | |
download | mate-control-center-f3d405f6429da5d258d56668aac4d88ec7e46424.tar.bz2 mate-control-center-f3d405f6429da5d258d56668aac4d88ec7e46424.tar.xz |
ci: build with mate-common-1.24.1 tarball
-rw-r--r-- | .build.yml | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -158,6 +158,18 @@ variables: before_scripts: - 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 + + - cd ${START_DIR} - if [ ! -f mate-desktop-1.23.2.tar.xz ];then - curl -Ls -o mate-desktop-1.23.2.tar.xz https://github.com/mate-desktop/mate-desktop/releases/download/v1.23.2/mate-desktop-1.23.2.tar.xz - fi |