From 83ee268d4c531516bfa0a74690e2de68b6f4a0d5 Mon Sep 17 00:00:00 2001 From: kuoruan Date: Mon, 30 May 2016 11:05:38 +0800 Subject: [PATCH] yaaw: Add package Yet Another Aria2 Web Frontend in pure HTML/CSS/Javascirpt. Signed-off-by: Hsing-Wang Liao --- net/yaaw/Makefile | 51 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 net/yaaw/Makefile diff --git a/net/yaaw/Makefile b/net/yaaw/Makefile new file mode 100644 index 0000000000..e78a7d6934 --- /dev/null +++ b/net/yaaw/Makefile @@ -0,0 +1,51 @@ +# +# 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:=yaaw +PKG_VERSION:=2016-05-28 +PKG_RELEASE:=1 +PKG_MAINTAINER:=Hsing-Wang Liao + +PKG_SOURCE_PROTO:=git +PKG_SOURCE_URL:=https://github.com/binux/yaaw.git +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_VERSION:=c28cde2252b707fe0661693f78c5e5e3beee09a1 +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz + +PKG_LICENSE:=LGPL-3.0 + +include $(INCLUDE_DIR)/package.mk + +define Package/yaaw + SECTION:=net + CATEGORY:=Network + SUBMENU:=Download Manager + DEPENDS:= + TITLE:=Yet another aria2 web frontend + URL:=https://github.com/binux/yaaw + PKGARCH:=all +endef + +define Package/yaaw/description + Yet Another Aria2 Web Frontend in pure HTML/CSS/Javascirpt. +endef + +define Build/Compile +endef + +define Package/yaaw/install + $(INSTALL_DIR) $(1)/www/yaaw + $(CP) $(PKG_BUILD_DIR)/js $(1)/www/yaaw + $(CP) $(PKG_BUILD_DIR)/img $(1)/www/yaaw + $(CP) $(PKG_BUILD_DIR)/css $(1)/www/yaaw + $(CP) $(PKG_BUILD_DIR)/index.html $(1)/www/yaaw + $(CP) $(PKG_BUILD_DIR)/offline.appcache $(1)/www/yaaw +endef + +$(eval $(call BuildPackage,yaaw)) -- 2.30.2