1
0
mirror of https://github.com/freifunk-gluon/packages.git synced 2024-06-15 11:43:55 +02:00
gluon-packages/gluon/gluon-neighbour-info/Makefile
Nils Schneider 70f19a5596 gluon-neighbour-info: query direct neighbours
This is a simple client for gluon-announced.
2014-08-28 18:48:57 +02:00

40 lines
853 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-neighbour-info
PKG_VERSION:=1
PKG_RELEASE:=1
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/gluon-neighbour-info
SECTION:=gluon
CATEGORY:=Gluon
TITLE:=neighbour-info
DEPENDS:=
endef
define Package/gluon-neighbour-info/description
Gluon community wifi mesh firmware framework: neighbour-info
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
$(CP) ./src/* $(PKG_BUILD_DIR)/
endef
define Build/Configure
endef
define Build/Compile
CFLAGS="$(TARGET_CFLAGS)" CPPFLAGS="$(TARGET_CPPFLAGS)" $(MAKE) -C $(PKG_BUILD_DIR) $(TARGET_CONFIGURE_OPTS)
endef
define Package/gluon-neighbour-info/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/gluon-neighbour-info $(1)/usr/bin/
endef
$(eval $(call BuildPackage,gluon-neighbour-info))