summaryrefslogtreecommitdiff
path: root/.build.yml
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2023-10-20 19:40:07 +0200
committermouse <[email protected]>2023-10-22 20:27:35 +0800
commit5752a3d49b6df46096f01c35b251c5f6f7ec259c (patch)
tree41e1cd84ac3b97c8d5f60020d4e54558f49caf38 /.build.yml
parent2fdc5140395d7e1e0050b64af7f5eeb019ebbeb5 (diff)
downloadpluma-5752a3d49b6df46096f01c35b251c5f6f7ec259c.tar.bz2
pluma-5752a3d49b6df46096f01c35b251c5f6f7ec259c.tar.xz
replace deprecated gtk_image_menu_item*
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml
index 2eeb7461..42f9e6f5 100644
--- a/.build.yml
+++ b/.build.yml
@@ -22,6 +22,9 @@ requires:
- python3
- which
- yelp-tools
+ # mate-desktop dependencies
+ - dconf
+ - iso-codes
debian:
# Useful URL: https://github.com/mate-desktop/debian-packages
@@ -50,6 +53,9 @@ requires:
- python3-dev
- python3-lxml
- yelp-tools
+ # mate-desktop dependencies
+ - iso-codes
+ - libdconf-dev
fedora:
# Useful URL: https://src.fedoraproject.org/cgit/rpms/pluma.git
@@ -73,6 +79,10 @@ requires:
- python3-devel
- python3-lxml
- redhat-rpm-config
+ # mate-desktop dependencies
+ - dconf-devel
+ - gobject-introspection-devel
+ - iso-codes-devel
ubuntu:
- autopoint
@@ -97,6 +107,9 @@ requires:
- python3-dev
- python3-lxml
- yelp-tools
+ # mate-desktop dependencies
+ - iso-codes
+ - libdconf-dev
variables:
- 'CHECKERS="
@@ -115,8 +128,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}
- curl -Ls -o /usr/bin/gla11y https://github.com/hypra/gla11y/raw/v0.3/gla11y
- chmod +x /usr/bin/gla11y