mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
36 lines
841 B
Makefile
36 lines
841 B
Makefile
#
|
|
# Copyright (C) 2013 Inteno
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=ifbt
|
|
PKG_VERSION:=0.1
|
|
|
|
PKG_SOURCE_VERSION:=da97d6668d3c0e3f2be226c66b406e90179ada81
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=git@dev.iopsys.eu:iopsys/ifbt.git
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ifbt
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libuci +libubox +libubus +libblobmsg-json +libjson-c
|
|
TITLE:=Fast BSS Transition
|
|
endef
|
|
|
|
define Package/ifbt/description
|
|
ifbt is Iopsys application for fast BSS transition
|
|
endef
|
|
|
|
define Package/ifbt/install
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ifbt $(1)/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ifbt))
|