Rebuild with icu 77.1

This commit is contained in:
2025-09-15 15:07:12 +03:00
parent d130a71241
commit 19c037c929
2 changed files with 5 additions and 11 deletions
+4 -11
View File
@@ -15,27 +15,20 @@ prepare() {
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
mkdir build
cd build
meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -D_systemd=false ..
meson compile
meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -D_systemd=false build
meson compile -C build
}
# The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly
check() {
cd build
meson test
meson test -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() {
cd build
meson install --destdir="$BPM_OUTPUT"
meson install -C build --destdir="$BPM_OUTPUT"
# Remove etc/profile scripts
rm "$BPM_OUTPUT"/etc/profile.d/vte.*