2 # Copyright (C) 2010-2011 OpenWrt.org
3 # Copyright (C) 2010 Gianluigi Tiesi <sherpya@netfarm.it>
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
9 include $(TOPDIR)/rules.mk
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://alioth.debian.org/frs/download.php/3015
17 PKG_MD5SUM:=a2a762fce0c96781965c8f9786a3d09d
21 include $(INCLUDE_DIR)/package.mk
26 SUBMENU:=File Transfer
27 TITLE:=Axel Download Accelerator
29 URL:=http://axel.alioth.debian.org/
30 MAINTAINER:=Gianluigi Tiesi <sherpya@netfarm.it>
33 define Package/axel/description
34 Axel tries to accelerate HTTP/FTP downloading process by using multiple connections for one file.
35 It can use multiple mirrors for a download. Axel has no dependencies and is lightweight,
36 so it might be useful as a wget clone on byte-critical systems.
40 # - I'm using := and not += because it is not a standard configure script
41 # - I ask not to strip, because it should be handled by the toolchain
49 define Package/axel/install
50 $(INSTALL_DIR) $(1)/usr/bin
51 $(INSTALL_BIN) $(PKG_BUILD_DIR)/axel $(1)/usr/bin/
52 $(INSTALL_DIR) $(1)/etc
53 $(INSTALL_DATA) $(PKG_BUILD_DIR)/axelrc.example $(1)/etc/axelrc
54 echo "alternate_output = 1" >> $(1)/etc/axelrc
57 define Package/axel/conffiles
61 $(eval $(call BuildPackage,axel))