Update package version to 0.81.90
This commit is contained in:
@@ -1,10 +1,9 @@
|
|||||||
name: vte
|
name: vte
|
||||||
description: Virtual terminal emulator widget library
|
description: Virtual terminal emulator widget library
|
||||||
version: 0.80.3
|
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
|
||||||
depends: ["at-spi2-core", "cairo", "fribidi", "gcc-libs", "gdk-pixbuf", "glib", "glibc", "gnutls", "gtk3", "icu", "lz4", "pango", "pcre2"]
|
depends: ["at-spi2-core", "cairo", "fribidi", "gcc-libs", "gdk-pixbuf", "glib", "glibc", "gnutls", "gtk3", "gtk4", "icu", "lz4", "pango", "pcre2"]
|
||||||
make_depends: ["gobject-introspection", "gperf", "gtk3", "meson", "vala"]
|
make_depends: ["gobject-introspection", "gperf", "meson", "vala"]
|
||||||
type: source
|
type: source
|
||||||
|
|||||||
@@ -18,23 +18,28 @@ build() {
|
|||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
|
|
||||||
meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -D_systemd=false -Dgtk4=false ..
|
meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -D_systemd=false ..
|
||||||
ninja
|
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
|
cd build
|
||||||
ninja test
|
|
||||||
|
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
|
cd build
|
||||||
DESTDIR="$BPM_OUTPUT" ninja install
|
|
||||||
|
meson install --destdir="$BPM_OUTPUT"
|
||||||
|
|
||||||
|
# Remove etc/profile scripts
|
||||||
rm "$BPM_OUTPUT"/etc/profile.d/vte.*
|
rm "$BPM_OUTPUT"/etc/profile.d/vte.*
|
||||||
|
|
||||||
|
# Install package license
|
||||||
install -Dm644 "$BPM_SOURCE"/COPYING.{,L}GPL3 -t "$BPM_OUTPUT"/usr/share/licenses/vte/
|
install -Dm644 "$BPM_SOURCE"/COPYING.{,L}GPL3 -t "$BPM_OUTPUT"/usr/share/licenses/vte/
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user