300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
24 lines
927 B
Makefile
24 lines
927 B
Makefile
#############################################################
|
|
#
|
|
# MatchBox Fakekey
|
|
#
|
|
#############################################################
|
|
|
|
MATCHBOX_FAKEKEY_VERSION = 0.1
|
|
MATCHBOX_FAKEKEY_SOURCE = libfakekey-$(MATCHBOX_FAKEKEY_VERSION).tar.bz2
|
|
MATCHBOX_FAKEKEY_SITE = http://matchbox-project.org/sources/libfakekey/$(MATCHBOX_FAKEKEY_VERSION)
|
|
MATCHBOX_FAKEKEY_INSTALL_STAGING = YES
|
|
MATCHBOX_FAKEKEY_DEPENDENCIES = matchbox-lib xlib_libXtst
|
|
MATCHBOX_FAKEKEY_CONF_OPT = --enable-expat
|
|
|
|
define MATCHBOX_FAKEKEY_POST_CONFIGURE_FIXES
|
|
$(SED) 's:-I[^$$].*/usr/include/freetype2:-I/usr/include/freetype2:' $(STAGING_DIR)/usr/lib/pkgconfig/libmb.pc
|
|
$(SED) 's:^SUBDIRS = fakekey src tests.*:SUBDIRS = fakekey src:g' $(MATCHBOX_FAKEKEY_DIR)/Makefile
|
|
endef
|
|
|
|
MATCHBOX_FAKEKEY_POST_CONFIGURE_HOOKS += MATCHBOX_FAKEKEY_POST_CONFIGURE_FIXES
|
|
|
|
#############################################################
|
|
|
|
$(eval $(call AUTOTARGETS))
|