1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #
- # Copyright (C) 2016 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:=webui-aria2
- PKG_VERSION:=2016-10-11
- PKG_RELEASE:=1
- PKG_SOURCE_PROTO:=git
- PKG_SOURCE_URL:=https://github.com/ziahamza/webui-aria2.git
- PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
- PKG_SOURCE_VERSION:=6a29c1b1d0224e1daa88906e88bc2e177ca2ad76
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
- PKG_LICENSE:=MIT
- PKG_LICENSE_FILES:=LICENSE
- PKG_MAINTAINER:=Hsing-Wang Liao <kuoruan@gmail.com>
- include $(INCLUDE_DIR)/package.mk
- define Package/webui-aria2
- SECTION:=net
- CATEGORY:=Network
- SUBMENU:=Download Manager
- DEPENDS:=
- TITLE:=An interface to interact with aria2
- URL:=https://github.com/ziahamza/webui-aria2
- PKGARCH:=all
- endef
- define Package/webui-aria2/description
- The aim for this project is to create the worlds best and hottest interface to interact with aria2. Very simple to use.
- endef
- define Build/Compile
- endef
- define Package/webui-aria2/install
- $(INSTALL_DIR) $(1)/www/webui-aria2
- $(CP) $(PKG_BUILD_DIR)/fonts $(1)/www/webui-aria2
- $(CP) $(PKG_BUILD_DIR)/flags $(1)/www/webui-aria2
- $(CP) $(PKG_BUILD_DIR)/js $(1)/www/webui-aria2
- $(CP) $(PKG_BUILD_DIR)/img $(1)/www/webui-aria2
- $(CP) $(PKG_BUILD_DIR)/css $(1)/www/webui-aria2
- $(CP) $(PKG_BUILD_DIR)/index.html $(1)/www/webui-aria2
- $(CP) $(PKG_BUILD_DIR)/favicon.ico $(1)/www/webui-aria2
- $(CP) $(PKG_BUILD_DIR)/configuration.js $(1)/www/webui-aria2
- endef
- $(eval $(call BuildPackage,webui-aria2))
|