xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-ttf_2.0.11.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "Simple DirectMedia Layer truetype font library"
2SECTION = "libs"
3DEPENDS = "virtual/libsdl freetype"
4LICENSE = "Zlib"
5LIC_FILES_CHKSUM = "file://COPYING;md5=22800d1b3701377aae0b61ee36f5c303"
6
7SRC_URI = "http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-${PV}.tar.gz \
8           file://use.pkg-config.for.freetype2.patch \
9"
10SRC_URI[md5sum] = "61e29bd9da8d245bc2471d1b2ce591aa"
11SRC_URI[sha256sum] = "724cd895ecf4da319a3ef164892b72078bd92632a5d812111261cde248ebcdb7"
12
13S = "${WORKDIR}/SDL_ttf-${PV}"
14
15inherit autotools pkgconfig
16
17LDFLAGS += "-lm"
18
19do_configure:prepend() {
20    # make autoreconf happy
21    touch ${S}/NEWS ${S}/AUTHORS ${S}/ChangeLog
22
23    # Removing these files fixes a libtool version mismatch.
24    MACROS="libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4"
25
26    for i in ${MACROS}; do
27        rm -f ${S}/acinclude/$i
28    done
29}
30