contrib/libraqm/Pkgfile

22 lines
566 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/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: fribidi harfbuzz
name=libraqm
2022-02-17 15:56:57 +01:00
version=0.9.0
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() {
2021-11-15 13:40:37 +01: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
}