439b6837b3de445a46a7c83a75115f822f823c4a
[project/luci.git] / contrib / package / community-profiles / 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:=community-profiles
7 PKG_RELEASE:=1
8
9 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
10
11 include $(INCLUDE_DIR)/package.mk
12
13 define Package/community-profiles
14   SECTION:=luci
15   CATEGORY:=LuCI
16   SUBMENU:=Freifunk
17   TITLE:=Community profiles
18   DEPENDS:=freifunk-common
19 endef
20
21 define Package/community-profiles/description
22   These community profiles set defaults for various free network/freifunk communities and are used by wizards like ffwizard and meshwizard.
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/community-profiles/install
36         $(CP) ./files/* $(1)/
37 endef
38
39 $(eval $(call BuildPackage,community-profiles))