Move all to deprecated folder.
This commit is contained in:
11
deprecated/firmware/buildroot/package/axel/Config.in
Normal file
11
deprecated/firmware/buildroot/package/axel/Config.in
Normal file
@@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_AXEL
|
||||
bool "axel"
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
HTTP/FTP download accelerator.
|
||||
|
||||
http://axel.alioth.debian.org/
|
||||
|
||||
comment "axel needs a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
2
deprecated/firmware/buildroot/package/axel/axel.hash
Normal file
2
deprecated/firmware/buildroot/package/axel/axel.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 359a57ab4e354bcb6075430d977c59d33eb3e2f1415a811948fa8ae657ca8036 axel-2.4.tar.gz
|
||||
41
deprecated/firmware/buildroot/package/axel/axel.mk
Normal file
41
deprecated/firmware/buildroot/package/axel/axel.mk
Normal file
@@ -0,0 +1,41 @@
|
||||
################################################################################
|
||||
#
|
||||
# axel
|
||||
#
|
||||
################################################################################
|
||||
|
||||
AXEL_VERSION = 2.4
|
||||
AXEL_SITE = http://sources.buildroot.net
|
||||
AXEL_LICENSE = GPLv2+
|
||||
AXEL_LICENSE_FILES = COPYING
|
||||
|
||||
AXEL_LDFLAGS = -lpthread
|
||||
|
||||
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
||||
AXEL_DEPENDENCIES += gettext
|
||||
AXEL_LDFLAGS += -lintl
|
||||
endif
|
||||
|
||||
ifneq ($(BR2_ENABLE_LOCALE),y)
|
||||
AXEL_DISABLE_I18N = --i18n=0
|
||||
endif
|
||||
|
||||
define AXEL_CONFIGURE_CMDS
|
||||
(cd $(@D); \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--debug=1 \
|
||||
$(AXEL_DISABLE_I18N) \
|
||||
)
|
||||
endef
|
||||
|
||||
define AXEL_BUILD_CMDS
|
||||
$(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \
|
||||
LFLAGS="$(TARGET_LDFLAGS) $(AXEL_LDFLAGS)" -C $(@D)
|
||||
endef
|
||||
|
||||
define AXEL_INSTALL_TARGET_CMDS
|
||||
$(MAKE) DESTDIR=$(TARGET_DIR) -C $(@D) install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user