contrib/meshwizard: Use the new interfaces syntax instead of the old alias syntax...
[project/luci.git] / contrib / package / meshwizard / Makefile
1 # Copyright (C) 2011 Manuel Munz <freifunk at somakoma de>
2 # This is free software, licensed under the Apache 2.0 license.
3
4 include $(TOPDIR)/rules.mk
5
6 PKG_NAME:=meshwizard
7 PKG_RELEASE:=0.0.9-1
8
9 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
10
11 include $(INCLUDE_DIR)/package.mk
12
13 define Package/meshwizard
14   SECTION:=luci
15   CATEGORY:=LuCI
16   SUBMENU:=9. Freifunk
17   TITLE:=Shell script based wizard for Mesh networks
18   DEPENDS:=+firewall
19 endef
20
21 define Package/meshwizard/description
22   A shellscript based wizard to simplify the setup of a typical mesh node (e.g. for Freifunk.net)
23 endef
24
25 define Build/Prepare
26         mkdir -p $(PKG_BUILD_DIR)
27 endef
28
29 define Build/Configure
30 endef
31
32 define Build/Compile
33 endef
34
35 define Package/meshwizard/install
36         $(CP) ./files/* $(1)/
37 endef
38
39 $(eval $(call BuildPackage,meshwizard))