508f033a1b
Use AutoTools.in to build freetype. Slight issue with freetype installation to TARGET_DIR. Doing an install results in far too many files being copied in. So for now I do what the old makefile did which is copy the .so files and links manually rather than using a make install. It also uses the autotools.in additions to not use the generic libtool patch and use a local one instead. Daniel Laird
25 lines
1020 B
Makefile
25 lines
1020 B
Makefile
#############################################################
|
|
#
|
|
# freetype
|
|
#
|
|
#############################################################
|
|
FREETYPE_VERSION = $(strip $(subst ",, $(BR2_FREETYPE_VERSION)))
|
|
FREETYPE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/freetype
|
|
FREETYPE_SOURCE = freetype-$(FREETYPE_VERSION).tar.bz2
|
|
FREETYPE_LIBTOOL_PATCH = NO
|
|
FREETYPE_INSTALL_STAGING = YES
|
|
FREETYPE_INSTALL_TARGET = NO
|
|
FREETYPE_MAKE_OPT = CCexe="$(HOSTCC)"
|
|
FREETYPE_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
|
|
FREETYPE_DEPENDENCIES = uclibc pkgconfig
|
|
|
|
$(eval $(call AUTOTARGETS,package,freetype))
|
|
|
|
$(FREETYPE_HOOK_POST_BUILD):
|
|
-cp -a $(FREETYPE_DIR)/objs/.libs/libfreetype.so* $(TARGET_DIR)/usr/lib/
|
|
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libfreetype.so
|
|
$(SED) "s,^prefix=.*,prefix=\'$(STAGING_DIR)/usr\',g" $(FREETYPE_DIR)/builds/unix/freetype-config
|
|
$(SED) "s,^exec_prefix=.*,exec_prefix=\'$(STAGING_DIR)/usr\',g" $(FREETYPE_DIR)/builds/unix/freetype-config
|
|
touch $@
|
|
|