immortalwrt/package/ctcgfw/subweb/Makefile
2020-03-20 03:41:12 +08:00

65 lines
1.7 KiB
Makefile

#
# Copyright (C) 2019 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:=subweb
PKG_VERSION:=20200309
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/lzdnico/subweb.git
PKG_SOURCE_VERSION:=b1ced3a68e3a4dfc6c9949b5f1553009c035baee
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_LICENSE:=GPLv3
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=[CTCGFW]Project OpenWrt
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL:=1
PKG_FIXUP:=autoreconf
PKG_USE_MIPS16:=0
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
define Package/$(PKG_NAME)
SECTION:=net
CATEGORY:=Network
TITLE:=(WebUI) Utility to convert between various subscription format.
URL:=https://github.com/lzdnico/subweb
DEPENDS:=+python3 +python3-flask +python3-flask-restful +python3-requests +subconverter
endef
define Package/$(PKG_NAME)/description
(WebUI) Utility to convert between various subscription format.
endef
define Build/Configure
$(RM) $(PKG_BUILD_DIR)/config/{subconverter,README.md,README-cn.md}
$(RM) -r $(PKG_BUILD_DIR)/api/__pycache__
$(SED) 's/root/etc/g;s/ -ef//g' $(PKG_BUILD_DIR)/subweb.sh
endef
define Build/Compile
endef
define Build/Install
endef
define Package/$(PKG_NAME)/install
$(INSTALL_DIR) $(1)/etc/subweb
$(INSTALL_BIN) $(PKG_BUILD_DIR)/subweb.sh $(1)/etc/subweb/
$(CP) $(PKG_BUILD_DIR)/{api,config,static,templates,api.py} $(1)/etc/subweb/
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/subweb.init $(1)/etc/init.d/subweb
endef
$(eval $(call BuildPackage,$(PKG_NAME)))