mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 01:22:25 +00:00
35 lines
844 B
Makefile
35 lines
844 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=usteer
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL=https://git.openwrt.org/project/usteer.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2021-04-19
|
|
PKG_SOURCE_VERSION:=ab4d89e7429df19fb7af862213bc5f09ca964948
|
|
PKG_MIRROR_HASH:=84f6143fea887aca896337756d393494a4cfb698f5e48da760c38723ceaca226
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/usteer
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libubox +libubus +libblobmsg-json +libnl-tiny +libpcap
|
|
TITLE:=OpenWrt AP roaming assist daemon
|
|
endef
|
|
|
|
define Package/usteer/conffiles
|
|
/etc/config/usteer
|
|
endef
|
|
|
|
define Package/usteer/install
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/etc/init.d $(1)/etc/config
|
|
$(CP) ./files/* $(1)/
|
|
$(CP) $(PKG_BUILD_DIR)/{usteerd,ap-monitor} $(1)/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,usteer))
|