collectd: unbreak collectd-mod-sensors
[feed/packages.git] / net / luci-proto-openconnect / Makefile
1 # Copyright (C) 2014 Nikos Mavrogiannopoulos
2 #
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License along
14 # with this program; if not, write to the Free Software Foundation, Inc.,
15 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 #
17 # The full GNU General Public License is included in this distribution in
18 # the file called "COPYING".
19
20 include $(TOPDIR)/rules.mk
21
22 PKG_NAME:=luci-proto-openconnect
23 PKG_RELEASE:=1
24
25 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
26
27 include $(INCLUDE_DIR)/package.mk
28
29 define Package/luci-proto-openconnect
30 SECTION:=luci
31 CATEGORY:=LuCI
32 SUBMENU:=6. Protocols
33 TITLE:= OpenConnect VPN protocol configuration
34 DEPENDS:=+luci-mod-admin-full +luci-lib-nixio +openconnect
35 MAINTAINER:= Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
36 endef
37
38 define Package/luci-proto-openconnect/description
39 openconnect web module for LuCi web interface
40 endef
41
42 define Build/Prepare
43 endef
44
45 define Build/Configure
46 endef
47
48 define Build/Compile
49 endef
50
51 # Fixme: How can we add <%+openconnect_status%> in view/admin_status/index.htm?
52 define Package/luci-proto-openconnect/install
53 $(CP) ./files/* $(1)/
54 endef
55
56 $(eval $(call BuildPackage,luci-proto-openconnect))
57