c3e5a675dd
cpe:2.3🅰️noping:liboping is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Anoping%3Aliboping Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
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))
|