mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
10
package/axel/Config.in
Normal file
10
package/axel/Config.in
Normal file
@@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_AXEL
|
||||
bool "axel"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
HTTP/FTP download accelerator.
|
||||
|
||||
https://github.com/axel-download-accelerator/axel/
|
||||
|
||||
comment "axel needs a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
1
package/axel/axel.hash
Normal file
1
package/axel/axel.hash
Normal file
@@ -0,0 +1 @@
|
||||
sha256 5c5c682617d498071ff9083029fcecc2c2fdeeedc366c35d2bdf8663355616cc axel-2.17.5.tar.xz
|
||||
27
package/axel/axel.mk
Normal file
27
package/axel/axel.mk
Normal file
@@ -0,0 +1,27 @@
|
||||
################################################################################
|
||||
#
|
||||
# axel
|
||||
#
|
||||
################################################################################
|
||||
|
||||
AXEL_VERSION = 2.17.5
|
||||
AXEL_SITE = https://github.com/axel-download-accelerator/axel/releases/download/v$(AXEL_VERSION)
|
||||
AXEL_SOURCE = axel-$(AXEL_VERSION).tar.xz
|
||||
AXEL_LICENSE = GPL-2.0+
|
||||
AXEL_LICENSE_FILES = COPYING
|
||||
AXEL_DEPENDENCIES = host-pkgconf $(TARGET_NLS_DEPENDENCIES)
|
||||
|
||||
# ac_cv_prog_cc_c99 is required for BR2_USE_WCHAR=n because the C99 test
|
||||
# provided by autoconf relies on wchar_t.
|
||||
AXEL_CONF_OPTS = \
|
||||
ac_cv_prog_cc_c99=-std=c99 \
|
||||
CFLAGS="$(TARGET_CFLAGS)"
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
AXEL_CONF_OPTS += --with-ssl
|
||||
AXEL_DEPENDENCIES += openssl
|
||||
else
|
||||
AXEL_CONF_OPTS += --without-ssl
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user