blob: c49add59b5fb45a5b62cd96a59ae401d42272ef8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include fontconfig_${PV}.oe
inherit native
DEPENDS = "freetype-native expat-native"
FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/fontconfig-${PV}"
do_compile () {
oe_runmake
}
do_stage () {
oe_runmake install
install fc-lang/fc-lang ${STAGING_BINDIR}
install fc-glyphname/fc-glyphname ${STAGING_BINDIR}
}
#
# FIXME: If this package fails to compile on your host, then
# you have docbook2html installed. Delete it or fix this package
# to obey what we request in fontconfig (--disable-docs).
#
|