mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 17:42:10 +00:00
23 lines
602 B
Makefile
23 lines
602 B
Makefile
################################################################################
|
|
#
|
|
# httping
|
|
#
|
|
################################################################################
|
|
|
|
HTTPING_VERSION = 0e26c53d5fe504eb7204d64b23513729aa4a5bb0
|
|
HTTPING_SITE = https://github.com/folkertvanheusden/HTTPing
|
|
HTTPING_SITE_METHOD = git
|
|
HTTPING_LICENSE = AGPL-3.0
|
|
HTTPING_LICENSE_FILES = LICENSE
|
|
|
|
ifeq ($(BR2_PACKAGE_HTTPING_TUI),y)
|
|
HTTPING_DEPENDENCIES += ncurses fftw-double
|
|
HTTPING_CONF_OPTS += -DUSE_TUI=1
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HTTPING_SSL),y)
|
|
HTTPING_DEPENDENCIES += openssl
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|