openwrt-packages/net/transmission-web-control/Makefile

42 lines
1.1 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=transmission-web-control
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/ronggang/transmission-web-control
PKG_SOURCE_DATE:=2019-07-24
PKG_SOURCE_VERSION:=c27e3ba9f08148f79fb4121d8a1f5906640ff8d6
PKG_MIRROR_HASH:=6de823b9b8229b176fbb5c9f33f326c0fb23553ae00a36f60d019fdcdf90a712
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=Richard Yu <yurichard3839@gmail.com>
include $(INCLUDE_DIR)/package.mk
define Package/transmission-web-control
SECTION:=net
CATEGORY:=Network
SUBMENU:=BitTorrent
DEPENDS:=@(PACKAGE_transmission-daemon-openssl||PACKAGE_transmission-daemon-mbedtls)
CONFLICTS:=transmission-web
TITLE:=Transmission Web Control
URL:=https://github.com/ronggang/transmission-web-control
PKGARCH:=all
endef
define Package/transmission-web-control/description
Transmission Web Control is a custom Web UI for Transmission.
endef
define Build/Compile
endef
define Package/transmission-web-control/install
$(INSTALL_DIR) $(1)/usr/share/transmission/web
$(CP) $(PKG_BUILD_DIR)/src/* $(1)/usr/share/transmission/web
endef
$(eval $(call BuildPackage,transmission-web-control))