Rebuild with icu 77.1
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
name: vte
|
||||
description: Virtual terminal emulator widget library
|
||||
version: 0.81.90
|
||||
revision: 2
|
||||
url: https://wiki.gnome.org/Apps/Terminal/VTE
|
||||
license: GPL3-or-later,LGPL3-or-later
|
||||
architecture: any
|
||||
|
||||
@@ -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.*
|
||||
|
||||
Reference in New Issue
Block a user