Rebuild with icu 77.1
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
name: vte
|
name: vte
|
||||||
description: Virtual terminal emulator widget library
|
description: Virtual terminal emulator widget library
|
||||||
version: 0.81.90
|
version: 0.81.90
|
||||||
|
revision: 2
|
||||||
url: https://wiki.gnome.org/Apps/Terminal/VTE
|
url: https://wiki.gnome.org/Apps/Terminal/VTE
|
||||||
license: GPL3-or-later,LGPL3-or-later
|
license: GPL3-or-later,LGPL3-or-later
|
||||||
architecture: any
|
architecture: any
|
||||||
|
|||||||
@@ -15,27 +15,20 @@ prepare() {
|
|||||||
# 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() {
|
||||||
mkdir build
|
meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -D_systemd=false build
|
||||||
cd build
|
meson compile -C build
|
||||||
|
|
||||||
meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -D_systemd=false ..
|
|
||||||
meson compile
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# The check function is executed in the source directory
|
# The check function is executed in the source directory
|
||||||
# This function is used to run tests to verify the package has been compiled correctly
|
# This function is used to run tests to verify the package has been compiled correctly
|
||||||
check() {
|
check() {
|
||||||
cd build
|
meson test -C build
|
||||||
|
|
||||||
meson test
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# 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() {
|
||||||
cd build
|
meson install -C build --destdir="$BPM_OUTPUT"
|
||||||
|
|
||||||
meson install --destdir="$BPM_OUTPUT"
|
|
||||||
|
|
||||||
# Remove etc/profile scripts
|
# Remove etc/profile scripts
|
||||||
rm "$BPM_OUTPUT"/etc/profile.d/vte.*
|
rm "$BPM_OUTPUT"/etc/profile.d/vte.*
|
||||||
|
|||||||
Reference in New Issue
Block a user