blob: a805bb4b4e201ea9a63948e71ba47fe775fb0394 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/mkpkg
# description: Font configuration and customization library
# url: https://www.freedesktop.org/wiki/Software/fontconfig/
name=fontconfig
version=2.18.3
release=2
depends=(freetype expat)
makedeps=(meson gperf)
source=(https://gitlab.freedesktop.org/fontconfig/fontconfig/-/archive/$version/fontconfig-$version.tar.gz)
sha256sums=(
"9ae01e1d53acdef56010c5451cd34aa41d325b2faccd8606448d8fa01b2496b3"
)
build() {
meson setup $name-$version build \
--prefix=/usr \
--sysconfdir=/etc \
--buildtype=plain \
-D doc=disabled \
-D tests=disabled \
-D cache-build=disabled
meson compile -C build
DESTDIR=$PKG meson install -C build
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|