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>
34 lines
891 B
Makefile
34 lines
891 B
Makefile
#############################################################
|
|
#
|
|
# libidn
|
|
#
|
|
#############################################################
|
|
|
|
LIBIDN_VERSION = 1.19
|
|
LIBIDN_SITE = http://ftp.gnu.org/gnu/libidn/
|
|
LIBIDN_INSTALL_STAGING = YES
|
|
LIBIDN_CONF_ENV = EMACS="no"
|
|
LIBIDN_CONF_OPT = --disable-java --enable-csharp=no
|
|
LIBIDN_DEPENDENCIES = host-pkg-config $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
|
|
|
define LIBIDN_REMOVE_BINARY
|
|
rm -f $(TARGET_DIR)/usr/bin/idn
|
|
endef
|
|
|
|
ifneq ($(BR2_PACKAGE_LIBIDN_BINARY),y)
|
|
LIBIDN_POST_INSTALL_TARGET_HOOKS += LIBIDN_REMOVE_BINARY
|
|
endif
|
|
|
|
define LIBIDN_REMOVE_EMACS_STUFF
|
|
rm -rf $(TARGET_DIR)/usr/share/emacs
|
|
endef
|
|
|
|
LIBIDN_POST_INSTALL_TARGET_HOOKS += LIBIDN_REMOVE_EMACS_STUFF
|
|
|
|
define LIBIDN_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/lib/libidn*
|
|
rm -f $(TARGET_DIR)/usr/bin/idn
|
|
endef
|
|
|
|
$(eval $(call AUTOTARGETS))
|