diff options
author | EWouters <6179932+EWouters@users.noreply.github.com> | 2022-06-03 16:25:21 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-08 11:40:31 +0100 |
commit | accf20c83e4bc4465fb06557efa32e4d6a68f091 (patch) | |
tree | 82fd7f8cd97bf1d09512f335d88937e8030e3c45 /Ports | |
parent | 9a692aaabc17dd42fcb493ea035d2c07b4780418 (diff) | |
download | serenity-accf20c83e4bc4465fb06557efa32e4d6a68f091.zip |
Ports/harfbuzz: Update harfbuzz to version 4.3.0
Diffstat (limited to 'Ports')
-rw-r--r-- | Ports/AvailablePorts.md | 2 | ||||
-rwxr-xr-x | Ports/harfbuzz/package.sh | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 02548fce61..7beec8273c 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -79,7 +79,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`gsl`](gsl/) | GNU Scientific Library | 2.7.1 | https://www.gnu.org/software/gsl/ | | [`guile`](guile/) | The GNU guile programming language | 3.0.8 | https://www.gnu.org/software/guile/ | | [`halflife`](halflife/) | Half-Life | 2022.05.01 | https://github.com/FWGS/xash3d-fwgs | -| [`harfbuzz`](harfbuzz/) | HarfBuzz | 2.8.1 | https://github.com/harfbuzz/harfbuzz | +| [`harfbuzz`](harfbuzz/) | HarfBuzz | 4.3.0 | https://github.com/harfbuzz/harfbuzz | | [`hatari`](hatari/) | Atari ST/STE/TT/Falcon emulator | 2.4.0-devel | https://hatari.tuxfamily.org/ | | [`imagemagick`](imagemagick/) | ImageMagick | 7.1.0-29 | https://imagemagick.org | | [`imgcat`](imgcat/) | imgcat | 2.5.1 | https://github.com/eddieantonio/imgcat | diff --git a/Ports/harfbuzz/package.sh b/Ports/harfbuzz/package.sh index d29caae7d6..b4681f7039 100755 --- a/Ports/harfbuzz/package.sh +++ b/Ports/harfbuzz/package.sh @@ -1,11 +1,11 @@ #!/usr/bin/env -S bash ../.port_include.sh -port=harfbuzz -useconfigure=true -version=2.8.1 +port='harfbuzz' +version='4.3.0' +files="https://github.com/harfbuzz/harfbuzz/releases/download/${version}/harfbuzz-${version}.tar.xz harfbuzz-${version}.tar.xz a49628f4c4c8e6d8df95ef44935a93446cf2e46366915b0e3ca30df21fffb530" +useconfigure='true' +auth_type='sha256' depends=("freetype" "libicu") configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt" "-DHB_HAVE_FREETYPE=ON" "-DHB_HAVE_ICU=ON") -files="https://github.com/harfbuzz/harfbuzz/releases/download/${version}/harfbuzz-${version}.tar.xz harfbuzz-${version}.tar.xz 4124f663ec4bf4e294d9cf230668370b4249a48ff34deaf0f06e8fc82d891300" -auth_type=sha256 configure() { run mkdir -p build |