diff --git a/pkg.info b/pkg.info index ce25ece..2703384 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,21 @@ name: harfbuzz description: OpenType text shaping engine -version: 11.5.1 +version: 12.1.0 +revision: 1 url: https://harfbuzz.github.io/ license: MIT architecture: any -depends: ["gobject-introspection","glib","glibc","icu","freetype2"] -make_depends: ["meson"] 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 diff --git a/source.sh b/source.sh index b1a17f5..e2e3177 100644 --- a/source.sh +++ b/source.sh @@ -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 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 # This function is used to compile the source code build() { - mkdir build - cd build - - meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -Ddocs=disabled .. - ninja + meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -Ddocs=disabled 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 - ninja test + meson test -C build --print-errorlogs } # 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 - DESTDIR="$BPM_OUTPUT" ninja install + meson install -C build --destdir="$BPM_OUTPUT" + # Install package license install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/harfbuzz/COPYING }