mirror of
https://github.com/kenzok8/small-package
synced 2025-01-07 07:06:58 +08:00
54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2016-2018 SCUT Router Term
|
|
#
|
|
# This is free software, licensed under the GNU Affero General Public License v3.
|
|
# See /COPYING for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=scutclient
|
|
PKG_VERSION:=3.1.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/scutclient/scutclient.git
|
|
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
|
|
PKG_MIRROR_HASH:=3b98fb51956c0de8c25432c22c56477b245c5949be2b5ec7574ad10c83274668
|
|
|
|
PKG_MAINTAINER:=Scutclient Project
|
|
PKG_LICENSE:=AGPL-3.0
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/scutclient
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Campus Network
|
|
TITLE:=SCUT Dr.com client
|
|
URL:=https://github.com/scutclient/scutclient
|
|
endef
|
|
|
|
define Package/scutclient/description
|
|
Support SCUT private authentication protocol.
|
|
endef
|
|
|
|
define Package/scutclient/conffiles
|
|
/etc/config/scutclient
|
|
endef
|
|
|
|
define Package/scutclient/install
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/openwrt/files/scutclient.config $(1)/etc/config/scutclient
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/openwrt/files/scutclient.init $(1)/etc/init.d/scutclient
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/openwrt/files/scutclient.hotplug $(1)/etc/hotplug.d/iface/99-scutclient
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/scutclient $(1)/usr/bin
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,scutclient))
|