e2d2143337
- Rework ncurses dependency to use new --with[out]-ncurses option - Add hash for license file Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
23 lines
629 B
Makefile
23 lines
629 B
Makefile
################################################################################
|
|
#
|
|
# liboping
|
|
#
|
|
################################################################################
|
|
|
|
LIBOPING_VERSION = 1.10.0
|
|
LIBOPING_SITE = http://noping.cc/files
|
|
LIBOPING_SOURCE = liboping-$(LIBOPING_VERSION).tar.bz2
|
|
LIBOPING_INSTALL_STAGING = YES
|
|
LIBOPING_CONF_OPTS = --without-perl-bindings
|
|
LIBOPING_LICENSE = LGPL-2.1+, GPL-2.0
|
|
LIBOPING_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
LIBOPING_DEPENDENCIES += ncurses
|
|
LIBOPING_CONF_OPTS += --with-ncurses
|
|
else
|
|
LIBOPING_CONF_OPTS += --without-ncurses
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|