Merges.
[vuplus_openembedded] / freetype / freetype-native_2.1.7.oe
1 DESCRIPTION = "Freetype font rendering library"
2
3 SRC_URI = "ftp://ftp.freetype.org/freetype/freetype2/freetype-${PV}.tar.bz2 \
4            file://configure.patch;patch=1"
5
6 inherit autotools pkgconfig native
7 DEPENDS = "patcher-native"
8 FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/freetype-${PV}"
9 S = "${WORKDIR}/freetype-${PV}"
10 PACKAGES = ""
11
12 do_configure () {
13         (cd builds/unix && gnu-configize) || die "failure running gnu-configize"
14         oe_runconf
15 }
16
17 do_stage () {
18         oe_libinstall -so -a -C objs libfreetype ${STAGING_LIBDIR}
19         cp -a ${S}/include/*.h ${STAGING_INCDIR}
20         install -d ${STAGING_INCDIR}/freetype2
21         cp -a ${S}/include/freetype ${STAGING_INCDIR}/freetype2/
22 }