mirror of
http://git.openwrt.org/packages.git
synced 2025-01-09 04:19:54 +08:00
6ad34ad543
This dependency is not needed. This closes #11471. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> git-svn-id: svn://svn.openwrt.org/openwrt/packages@40653 3c298f89-4303-0410-b956-a3cf2f4a3e73
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2011-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=pyload
|
|
PKG_VERSION:=0.4.9
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-src-v$(PKG_VERSION).zip
|
|
PKG_SOURCE_URL:=http://download.pyload.org/
|
|
PKG_MD5SUM:=28876150af22999b6f539c8579d3b415
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
PKG_UNPACK=unzip -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_SOURCE)
|
|
|
|
define Package/pyload
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+python +pyopenssl +python-curl +python-crypto \
|
|
+python-expat +python-imaging-library +python-sqlite3 +js \
|
|
+tesseract +unrar
|
|
TITLE:=A fast, lightweight and full featured download manager
|
|
URL:=http://pyload.org
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/pyload/install
|
|
$(INSTALL_DIR) $(1)/usr/share/python
|
|
$(CP) $(PKG_BUILD_DIR)/pyload $(1)/usr/share/python/
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/pyload.init $(1)/etc/init.d/pyload
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(LN) ../share/python/pyload/pyLoadCore.py $(1)/usr/bin/pyload
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,pyload))
|