Update package version to 12.1.0

This commit is contained in:
2025-10-02 15:28:12 +03:00
parent 37d59671f9
commit 79d89d74d9
2 changed files with 19 additions and 22 deletions
+15 -3
View File
@@ -1,9 +1,21 @@
name: harfbuzz name: harfbuzz
description: OpenType text shaping engine description: OpenType text shaping engine
version: 11.5.1 version: 12.1.0
revision: 1
url: https://harfbuzz.github.io/ url: https://harfbuzz.github.io/
license: MIT license: MIT
architecture: any architecture: any
depends: ["gobject-introspection","glib","glibc","icu","freetype2"]
make_depends: ["meson"]
type: source type: source
depends:
- gobject-introspection
- glib
- glibc
- icu
- freetype2
make_depends:
- meson
downloads:
- url: https://github.com/harfbuzz/harfbuzz/releases/download/${BPM_PKG_VERSION}/harfbuzz-${BPM_PKG_VERSION}.tar.xz
extract_to_bpm_source: true
extract_strip_components: 1
checksum: e5c81b7f6e0b102dfb000cfa424538b8e896ab78a2f4b8a5ec8cae62ab43369e
+4 -19
View File
@@ -2,38 +2,23 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
DOWNLOAD="https://github.com/harfbuzz/harfbuzz/releases/download/${BPM_PKG_VERSION}/harfbuzz-${BPM_PKG_VERSION}.tar.xz"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
}
# 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 -Ddocs=disabled build
cd build
meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -Ddocs=disabled ..
ninja
} }
# 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 --print-errorlogs
ninja 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"
DESTDIR="$BPM_OUTPUT" ninja install
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/harfbuzz/COPYING install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/harfbuzz/COPYING
} }