diff options
author | Wu Xiaotian <[email protected]> | 2019-02-02 18:42:41 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-02-03 10:34:42 +0100 |
commit | 76ce83a13be72fafd9c33b375c334dee5d02e68c (patch) | |
tree | dc2bd8fe9a527cab28d2eb2f0db4ac5650f7b1de | |
parent | 7079813b4dde9d1d7ad2a34569d7f0d197ecab9b (diff) | |
download | mate-control-center-76ce83a13be72fafd9c33b375c334dee5d02e68c.tar.bz2 mate-control-center-76ce83a13be72fafd9c33b375c334dee5d02e68c.tar.xz |
use the git code of mate-menus
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index e073ca29..896e1136 100644 --- a/.travis.yml +++ b/.travis.yml @@ -137,12 +137,14 @@ before_scripts: - 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 >/dev/null; else ./configure --prefix=/usr >/dev/null; fi - make > /dev/null - make install >/dev/null - - popd - cd ${START_DIR} - - "[ -f mate-menus-1.21.0.tar.xz ] || curl -o mate-menus-1.21.0.tar.xz http://pub.mate-desktop.org/releases/1.21/mate-menus-1.21.0.tar.xz" - - tar xf mate-menus-1.21.0.tar.xz - - cd mate-menus-1.21.0 + #- "[ -f mate-menus-1.21.0.tar.xz ] || curl -o mate-menus-1.21.0.tar.xz http://pub.mate-desktop.org/releases/1.21/mate-menus-1.21.0.tar.xz" + #- tar xf mate-menus-1.21.0.tar.xz + #- cd mate-menus-1.21.0 + - git clone --depth 1 https://github.com/mate-desktop/mate-menus.git + - cd mate-menus + - ./autogen.sh >/dev/null - 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 >/dev/null; else ./configure --prefix=/usr >/dev/null; fi - make > /dev/null - make install > /dev/null |