opt/fontconfig/Pkgfile

33 lines
833 B
Plaintext
Raw Normal View History

2006-03-12 11:46:27 +01:00
# Description: A library for configuring and customizing font access
2021-12-13 19:11:47 +01:00
# URL: https://www.freedesktop.org/wiki/Software/fontconfig/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: expat freetype
2006-03-12 11:46:27 +01:00
name=fontconfig
2023-12-22 21:42:17 +01:00
version=2.15.0
2023-12-30 21:20:45 +01:00
release=2
2022-04-01 11:38:45 +02:00
source=(https://fontconfig.org/release/$name-$version.tar.xz)
2006-03-12 11:46:27 +01:00
build() {
2022-04-08 00:02:34 +02:00
meson setup $name-$version build \
2022-04-01 11:38:45 +02:00
--prefix=/usr \
2022-04-08 00:02:34 +02:00
--buildtype=plain \
--wrap-mode=nodownload \
-D b_lto=true \
-D b_pie=true \
-D doc-man=enabled \
2022-10-22 14:05:18 +02:00
-D doc=disabled \
2022-04-08 00:02:34 +02:00
-D nls=disabled \
-D tests=disabled \
-D cache-build=disabled
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2021-12-13 19:11:47 +01:00
# Enabling autohinting by default
pushd $PKG/etc/fonts/conf.d
2023-12-30 21:20:45 +01:00
ln -sf ../../../usr/share/fontconfig/conf.avail/10-autohint.conf
2021-12-13 19:11:47 +01:00
popd
2021-12-13 19:11:47 +01:00
rm -f $PKG/etc/fonts/conf.d/README
2006-03-12 11:46:27 +01:00
}