mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 23:36:46 +02:00
38 lines
940 B
Text
38 lines
940 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=fribidi
|
|
pkgver=1.0.16
|
|
pkgrel=0
|
|
pkgdesc="Free Implementation of the Unicode Bidirectional Algorithm"
|
|
url="https://github.com/fribidi/fribidi"
|
|
arch="all"
|
|
license="LGPL-2.1-or-later"
|
|
makedepends="meson"
|
|
subpackages="$pkgname-doc $pkgname-static $pkgname-dev"
|
|
source="https://github.com/fribidi/fribidi/releases/download/v$pkgver/fribidi-$pkgver.tar.xz"
|
|
|
|
# secfixes:
|
|
# 1.0.12-r0:
|
|
# - CVE-2022-25308
|
|
# - CVE-2022-25309
|
|
# - CVE-2022-25310
|
|
# 1.0.7-r1:
|
|
# - CVE-2019-18397
|
|
|
|
build() {
|
|
abuild-meson \
|
|
-Ddefault_library=both \
|
|
. output
|
|
meson compile -C output
|
|
}
|
|
|
|
check() {
|
|
meson test --no-rebuild --print-errorlogs -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
sha512sums="
|
|
e3a56f36155f6813e3609473639fc533de742309f561c463012dc90b412a1ac7694b765d92669b2cbfaee973ca0e92fa5e926e68a1a078921f26ef17d82ab651 fribidi-1.0.16.tar.xz
|
|
"
|