diff options
author | raveit65 <[email protected]> | 2019-09-28 10:21:53 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-10-01 15:08:57 +0200 |
commit | dbcd931fced4b67aff58e3205ce0bba86a1b7133 (patch) | |
tree | 529e45859da28aa9a6116640bfa4bc84215445a0 | |
parent | 06b9aac1847161f027546574d2ce4aed7eacbebd (diff) | |
download | mate-panel-dbcd931fced4b67aff58e3205ce0bba86a1b7133.tar.bz2 mate-panel-dbcd931fced4b67aff58e3205ce0bba86a1b7133.tar.xz |
travis (ci): build mate-common from tarball
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index d7317db9..ebbdd05e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -214,6 +214,17 @@ build_scripts: before_scripts: - cd ${START_DIR} + - '[ -f mate-common-1.23.3.tar.xz ] || curl -Ls -o mate-common-1.23.3.tar.xz http://pub.mate-desktop.org/releases/1.23/mate-common-1.23.3.tar.xz' + - tar xf mate-common-1.23.3.tar.xz + - cd mate-common-1.23.3 + - 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 [ ! -d mate-menus-build ]; then - git clone --depth 1 https://github.com/mate-desktop/mate-menus.git mate-menus-build - fi |