Update package version to 1.29.1

This commit is contained in:
2026-09-04 15:57:40 +03:00
parent 6cbe8fe927
commit a3521f3c8c
2 changed files with 7 additions and 10 deletions
+4 -3
View File
@@ -1,7 +1,7 @@
name: mate-control-center name: mate-control-center
description: The Control Center for MATE description: The Control Center for MATE
version: 1.28.1 version: 1.29.1
revision: 2 revision: 1
url: https://mate-desktop.org url: https://mate-desktop.org
license: GPL-2.0-or-later license: GPL-2.0-or-later
maintainers: maintainers:
@@ -24,8 +24,9 @@ make_depends:
- itstool - itstool
- libelogind - libelogind
- mate-common - mate-common
- meson
downloads: downloads:
- url: https://github.com/mate-desktop/mate-control-center/releases/download/v${BPM_PKG_VERSION}/mate-control-center-${BPM_PKG_VERSION}.tar.xz - 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_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: e12d34c1c1f11e3d0a2ba2dd41bc1c997bf0d1d56486896756f6edaac5f9a9b2 checksum: cb1d81397dc44503d5c4cf66c7911ede875aff3194da19e12e41bee8eb207f59
+3 -7
View File
@@ -5,18 +5,14 @@
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
./configure --prefix=/usr \ meson setup build --prefix=/usr
--sysconfdir=/etc \ meson compile -C build
--localstatedir=/var \
--disable-update-mimedb \
--disable-systemd
make
} }
# The package function is executed in the source directory # The package function is executed in the source directory
# This function is used to move the compiled files into the output directory # This function is used to move the compiled files into the output directory
package() { package() {
make DESTDIR="$BPM_OUTPUT" install meson install -C build --destdir="$BPM_OUTPUT"
# Install package license # Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/mate-control-center/COPYING install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/mate-control-center/COPYING