contrib/libraqm/Pkgfile

22 lines
581 B
Plaintext
Raw Normal View History

2020-01-27 07:36:00 +01:00
# Description: A library that encapsulates the logic for complex text layout
# URL: https://github.com/HOST-Oman/libraqm/
2023-08-13 10:50:43 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2020-01-27 07:36:00 +01:00
# Depends on: fribidi harfbuzz
name=libraqm
2023-04-29 21:08:57 +02:00
version=0.10.1
2020-01-27 07:36:00 +01:00
release=1
2022-02-17 15:56:57 +01:00
source=(https://github.com/HOST-Oman/libraqm/releases/download/v$version/raqm-$version.tar.xz)
2020-01-27 07:36:00 +01:00
build() {
2023-08-13 10:50:43 +02:00
meson setup raqm-$version build \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D docs=false
meson compile -C build
DESTDIR=$PKG meson install -C build
2020-01-27 07:36:00 +01:00
}