1
0
mirror of https://github.com/freifunk-gluon/packages.git synced 2024-06-15 03:33:53 +02:00
gluon-packages/gluon/gluon-mesh-batman-adv/Makefile
2014-07-05 02:48:56 +02:00

42 lines
818 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-mesh-batman-adv
PKG_VERSION:=3
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
include $(GLUONDIR)/include/package.mk
define Package/gluon-mesh-batman-adv
SECTION:=gluon
CATEGORY:=Gluon
TITLE:=Support for batman-adv meshing
DEPENDS:=+gluon-core +kmod-batman-adv-legacy +firewall +kmod-ipt-nathelper
endef
define Package/gluon-mesh-batman-adv/description
Gluon community wifi mesh firmware framework: batman-adv support
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/gluon-mesh-batman-adv/install
$(CP) ./files/* $(1)/
endef
define Package/gluon-mesh-batman-adv/postinst
#!/bin/sh
$(call GluonCheckSite,check_site.lua)
endef
$(eval $(call BuildPackage,gluon-mesh-batman-adv))