contrib/libraqm/Pkgfile

25 lines
706 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
2021-11-15 13:40:37 +01:00
version=0.7.2
2020-01-27 07:36:00 +01:00
release=1
2021-11-15 13:40:37 +01:00
source=(https://github.com/HOST-Oman/libraqm/releases/download/v$version/raqm-$version.tar.xz
https://github.com/HOST-Oman/libraqm/commit/819a3e9c.patch)
2020-01-27 07:36:00 +01:00
build() {
2021-11-15 13:40:37 +01:00
patch -d raqm-$version -p1 -i $SRC/819a3e9c.patch # Fix meson library version
2020-01-27 07:36:00 +01:00
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
}