You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=transmission-web-control
  3. PKG_RELEASE:=2
  4. PKG_SOURCE_PROTO:=git
  5. PKG_SOURCE_URL:=https://github.com/ronggang/transmission-web-control
  6. PKG_SOURCE_DATE:=2021-09-25
  7. PKG_SOURCE_VERSION:=4b2e1858f7a46ee678d5d1f3fa1a6cf2c739b88a
  8. PKG_MIRROR_HASH:=ea014c295766e2efc7b890dc6a6940176ba9c5bdcf85a029090f2bb850e59708
  9. PKG_LICENSE:=MIT
  10. PKG_LICENSE_FILES:=LICENSE
  11. PKG_MAINTAINER:=Richard Yu <yurichard3839@gmail.com>
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/transmission-web-control
  14. SECTION:=net
  15. CATEGORY:=Network
  16. SUBMENU:=BitTorrent
  17. DEPENDS:=+transmission-daemon
  18. CONFLICTS:=transmission-web
  19. TITLE:=Transmission Web Control
  20. URL:=https://github.com/ronggang/transmission-web-control
  21. PKGARCH:=all
  22. endef
  23. define Package/transmission-web-control/description
  24. Transmission Web Control is a custom Web UI for Transmission.
  25. endef
  26. define Build/Compile
  27. endef
  28. define Package/transmission-web-control/install
  29. $(INSTALL_DIR) $(1)/usr/share/transmission/web
  30. $(CP) $(PKG_BUILD_DIR)/src/* $(1)/usr/share/transmission/web
  31. endef
  32. $(eval $(call BuildPackage,transmission-web-control))