From a3521f3c8c759cf49782562e2f03865380fcb9a4 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 4 Sep 2026 15:57:40 +0300 Subject: [PATCH] Update package version to 1.29.1 --- info.yml | 7 ++++--- recipe.sh | 10 +++------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/info.yml b/info.yml index 261c5fc..33171d3 100644 --- a/info.yml +++ b/info.yml @@ -1,7 +1,7 @@ name: mate-control-center description: The Control Center for MATE -version: 1.28.1 -revision: 2 +version: 1.29.1 +revision: 1 url: https://mate-desktop.org license: GPL-2.0-or-later maintainers: @@ -24,8 +24,9 @@ make_depends: - itstool - libelogind - mate-common + - meson downloads: - url: https://github.com/mate-desktop/mate-control-center/releases/download/v${BPM_PKG_VERSION}/mate-control-center-${BPM_PKG_VERSION}.tar.xz extract_to: ${BPM_SOURCE} extract_strip_components: 1 - checksum: e12d34c1c1f11e3d0a2ba2dd41bc1c997bf0d1d56486896756f6edaac5f9a9b2 + checksum: cb1d81397dc44503d5c4cf66c7911ede875aff3194da19e12e41bee8eb207f59 diff --git a/recipe.sh b/recipe.sh index 616a5b4..20cf59b 100644 --- a/recipe.sh +++ b/recipe.sh @@ -5,18 +5,14 @@ # The build function is executed in the source directory # This function is used to compile the source code build() { - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --disable-update-mimedb \ - --disable-systemd - make + meson setup build --prefix=/usr + meson compile -C build } # The package function is executed in the source directory # This function is used to move the compiled files into the output directory package() { - make DESTDIR="$BPM_OUTPUT" install + meson install -C build --destdir="$BPM_OUTPUT" # Install package license install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/mate-control-center/COPYING