2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2006-01-23 19:27:46 +01:00
|
|
|
#
|
|
|
|
# dialog
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-01-05 19:26:22 +01:00
|
|
|
|
|
|
|
DIALOG_VERSION = 1.1-20111020
|
|
|
|
DIALOG_SOURCE = dialog-$(DIALOG_VERSION).tgz
|
|
|
|
DIALOG_SITE = ftp://invisible-island.net/dialog
|
2010-07-20 13:04:15 +02:00
|
|
|
DIALOG_CONF_OPT = --with-ncurses
|
2010-11-25 11:07:08 +01:00
|
|
|
DIALOG_CONF_ENV = ac_cv_path_NCURSES_CONFIG=true LIBS=-lncurses
|
2010-06-16 13:47:07 +02:00
|
|
|
DIALOG_DEPENDENCIES = ncurses
|
2013-01-29 09:23:51 +01:00
|
|
|
DIALOG_LICENSE = LGPLv2.1
|
|
|
|
DIALOG_LICENSE_FILES = COPYING
|
2006-01-23 19:27:46 +01:00
|
|
|
|
2010-11-25 11:07:08 +01:00
|
|
|
ifneq ($(BR2_ENABLE_LOCALE),y)
|
|
|
|
DIALOG_DEPENDENCIES+=libiconv
|
|
|
|
endif
|
|
|
|
|
2010-06-16 13:47:07 +02:00
|
|
|
define DIALOG_INSTALL_TARGET_CMDS
|
|
|
|
install -c $(@D)/dialog $(TARGET_DIR)/usr/bin/dialog
|
|
|
|
endef
|
2006-01-23 19:27:46 +01:00
|
|
|
|
2010-06-16 13:47:07 +02:00
|
|
|
define DIALOG_POST_CLEAN
|
|
|
|
-$(MAKE) -C $(@D) clean
|
|
|
|
rm -f $(TARGET_DIR)/usr/bin/dialog
|
|
|
|
endef
|
2006-01-23 19:27:46 +01:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|