blob: d1aab2495114029d114d1b73a75a3d8bd06c6e9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require fontconfig.inc
DEPENDS += "fontconfig-native"
SRC_URI += "file://fc-glyphname.patch;patch=1 \
file://fc-lang.patch;patch=1 \
file://local.conf"
PR = "r8"
do_stage () {
oe_libinstall -so -a -C src libfontconfig ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/fontconfig
for i in ${S}/fontconfig/*.h; do install -m 0644 $i ${STAGING_INCDIR}/fontconfig/; done
}
do_install () {
autotools_do_install
install -d ${D}/etc/fonts/
install -m 0644 ${WORKDIR}/local.conf ${D}/etc/fonts/
}
|