Add a build dependency for libpcap, as it is required for the monitor utility but not usteer itself. Use a build-dependency, as the monitor utility executable is not packaged. Signed-off-by: David Bauer <mail@david-bauer.net>
39 lines
836 B
Makefile
39 lines
836 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=usteer
|
|
PKG_VERSION:=$(shell git show -s --format=%cd --date=short)
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DEPENDS:=libpcap
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
PKG_FILE_DEPENDS:=$(CURDIR)/../..
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
ln -s $(CURDIR)/../../.git $(PKG_BUILD_DIR)/.git
|
|
cd $(PKG_BUILD_DIR) && git checkout .
|
|
endef
|
|
|
|
define Package/usteer
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libubox +libubus +libblobmsg-json +libnl-tiny
|
|
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 $(1)/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,usteer))
|