summaryrefslogtreecommitdiff
path: root/.build.yml
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2023-10-18 00:03:07 +0200
committerraveit65 <[email protected]>2023-10-22 10:33:20 +0200
commitac8612ca04a798a084630530205ec8bf28a61c07 (patch)
tree96b2471b6c007b12a1b771df98e9f6b73761066f /.build.yml
parentf1d486c32b3221cb8f03dec67b31098528138095 (diff)
downloadmate-utils-ac8612ca04a798a084630530205ec8bf28a61c07.tar.bz2
mate-utils-ac8612ca04a798a084630530205ec8bf28a61c07.tar.xz
replace deprecated gtk_image_menu_item*
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml38
1 files changed, 38 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml
index 82f2118e..36a3d405 100644
--- a/.build.yml
+++ b/.build.yml
@@ -18,6 +18,10 @@ requires:
- udisks2
- which
- yelp-tools
+ # mate-desktop dependencies
+ - dconf
+ - gobject-introspection
+ - iso-codes
debian:
# Useful URL: https://github.com/mate-desktop/debian-packages
@@ -46,6 +50,11 @@ requires:
- xsltproc
- yelp-tools
- zlib1g-dev
+ # mate-desktop dependencies
+ - gobject-introspection
+ - iso-codes
+ - libdconf-dev
+ - libgirepository1.0-dev
fedora:
# Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-utils.git
@@ -72,6 +81,10 @@ requires:
- redhat-rpm-config
- usermode
- yelp-tools
+ # mate-desktop dependencies
+ - dconf-devel
+ - gobject-introspection-devel
+ - iso-codes-devel
ubuntu:
- autoconf-archive
@@ -82,6 +95,7 @@ requires:
- git
- gtk-doc-tools
- libcanberra-gtk3-dev
+ - libdconf-dev
- libglib2.0-dev
- libgtk-3-dev
- libgtop2-dev
@@ -96,6 +110,11 @@ requires:
- xsltproc
- yelp-tools
- zlib1g-dev
+ # mate-desktop dependencies
+ - gobject-introspection
+ - iso-codes
+ - libdconf-dev
+ - libgirepository1.0-dev
variables:
- 'CHECKERS="
@@ -114,8 +133,27 @@ variables:
-enable-checker alpha.unix.cstring.OutOfBounds
-enable-checker alpha.core.FixedAddr
-enable-checker security.insecureAPI.strcpy"'
+ - MATE_DESKTOP_VERSION=1.27.1
before_scripts:
+ - cd ${START_DIR}
+ - if [ ! -f mate-desktop-${MATE_DESKTOP_VERSION}.tar.xz ];then
+ - curl -Ls -o mate-desktop-${MATE_DESKTOP_VERSION}.tar.xz https://github.com/mate-desktop/mate-desktop/releases/download/v${MATE_DESKTOP_VERSION}/mate-desktop-${MATE_DESKTOP_VERSION}.tar.xz
+ - fi
+ - tar xf mate-desktop-${MATE_DESKTOP_VERSION}.tar.xz
+ - cd mate-desktop-${MATE_DESKTOP_VERSION}
+ - if [ ${DISTRO_NAME} == "debian" -o ${DISTRO_NAME} == "ubuntu" ];then
+ - ./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu --libexecdir=/usr/lib/x86_64-linux-gnu
+ - else
+ - ./autogen.sh --prefix=/usr
+ - fi
+ - if [ ${TRAVIS} == "false" ]; then
+ - make clean
+ - fi
+ - make
+ - make install
+
+ - cd ${START_DIR}
# disable pt language for help in search tool
- sed -i s/"IGNORE_HELP_LINGUAS ="/"IGNORE_HELP_LINGUAS = pt"/g gsearchtool/help/Makefile.am