26 lines
706 B
Plaintext
26 lines
706 B
Plaintext
# Description: Simple library for font loading and glyph rasterization using FontConfig, FreeType and pixman.
|
|
# URL: https://codeberg.org/dnkl/fcft
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: fontconfig scdoc tllist utf8proc wayland-protocols xorg-libpixman
|
|
# Optional: harfbuzz
|
|
|
|
name=fcft
|
|
version=2.4.6
|
|
release=1
|
|
source=(https://codeberg.org/dnkl/fcft/archive/$version.tar.gz)
|
|
renames=($name-$version.tar.gz)
|
|
|
|
build() {
|
|
meson setup $name build \
|
|
--prefix=/usr \
|
|
--buildtype=plain \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=true \
|
|
-D b_pie=true \
|
|
-D test-text-shaping=true
|
|
meson compile -C build
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|