mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 13:33:28 +08:00
liboping: bump to version 1.10.0
- 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>
This commit is contained in:
parent
f451bed9c4
commit
e2d2143337
@ -1,2 +1,5 @@
|
||||
# From http://noping.cc/#download
|
||||
sha256 44bb1d88b56b88fda5533edb3aa005c69b3cd396f20453a157d7e31e536f3530 liboping-1.9.0.tar.bz2
|
||||
sha256 eb38aa93f93e8ab282d97e2582fbaea88b3f889a08cbc9dbf20059c3779d5cd8 liboping-1.10.0.tar.bz2
|
||||
|
||||
# Hash for license file:
|
||||
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING
|
||||
|
@ -4,13 +4,19 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBOPING_VERSION = 1.9.0
|
||||
LIBOPING_VERSION = 1.10.0
|
||||
LIBOPING_SITE = http://noping.cc/files
|
||||
LIBOPING_SOURCE = liboping-$(LIBOPING_VERSION).tar.bz2
|
||||
LIBOPING_INSTALL_STAGING = YES
|
||||
LIBOPING_DEPENDENCIES = $(if $(BR2_PACKAGE_NCURSES),ncurses)
|
||||
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))
|
||||
|
Loading…
Reference in New Issue
Block a user