2018-03-14 22:29:40 +11:00
|
|
|
# Description: Unicode Bidirectional (BiDi) Algorithm.
|
|
|
|
# URL: https://github.com/fribidi/fribidi/
|
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2021-06-07 12:41:46 +00:00
|
|
|
# Depends on: meson ninja
|
2018-03-14 22:29:40 +11:00
|
|
|
|
|
|
|
name=fribidi
|
2022-04-19 21:59:25 +02:00
|
|
|
version=1.0.12
|
2021-09-30 22:26:28 +02:00
|
|
|
release=1
|
2021-06-07 12:41:46 +00:00
|
|
|
source=(https://github.com/fribidi/fribidi/releases/download/v$version/$name-$version.tar.xz)
|
2018-03-14 22:29:40 +11:00
|
|
|
|
|
|
|
build() {
|
2021-06-07 12:41:46 +00:00
|
|
|
meson setup $name-$version build \
|
|
|
|
--prefix=/usr \
|
2021-09-30 22:26:28 +02:00
|
|
|
--buildtype=plain \
|
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true
|
2021-06-07 12:41:46 +00:00
|
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2018-03-14 22:29:40 +11:00
|
|
|
}
|