opt/fribidi/Pkgfile

20 lines
519 B
Plaintext
Raw Normal View History

2023-08-27 17:48:37 +02:00
# Description: Unicode Bidirectional (BiDi) Algorithm
2018-03-14 12:29:40 +01:00
# URL: https://github.com/fribidi/fribidi/
2023-08-27 17:48:37 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2018-03-14 12:29:40 +01:00
name=fribidi
2023-05-17 10:14:06 +02:00
version=1.0.13
2021-09-30 22:26:28 +02:00
release=1
source=(https://github.com/fribidi/fribidi/releases/download/v$version/$name-$version.tar.xz)
2018-03-14 12:29:40 +01:00
build() {
2023-08-27 17:48:37 +02:00
meson setup build $name-$version \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2018-03-14 12:29:40 +01:00
}