24 lines
661 B
Makefile
24 lines
661 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
|
|
LIBOPING_CPE_ID_VENDOR = noping
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
LIBOPING_DEPENDENCIES += ncurses
|
|
LIBOPING_CONF_OPTS += --with-ncurses
|
|
else
|
|
LIBOPING_CONF_OPTS += --without-ncurses
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|