nodogsplash: extend configuration help text
[feed/routing.git] / nodogsplash / Makefile
1 #
2 # Copyright (C) 2013-2015 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=nodogsplash
11 PKG_FIXUP:=autoreconf
12 PKG_VERSION:=1.0.0
13 PKG_RELEASE:=1
14
15 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=git://github.com/nodogsplash/nodogsplash.git
18 PKG_SOURCE_VERSION:=v1.0.0
19 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
20 PKG_BUILD_PARALLEL:=1
21 PKG_LICENSE:=GPL-2.0+
22
23 include $(INCLUDE_DIR)/package.mk
24
25
26 define Package/nodogsplash
27 SUBMENU:=Captive Portals
28 SECTION:=net
29 CATEGORY:=Network
30 DEPENDS:=+libpthread +iptables-mod-ipopt
31 TITLE:=Open public network gateway daemon
32 URL:=https://github.com/nodogsplash/nodogsplash
33 endef
34
35 define Package/nodogsplash/description
36 Nodogsplash offers a simple way to open a free hotspot providing
37 restricted access to an internet connection.
38 endef
39
40 define Package/nodogsplash/install
41 $(INSTALL_DIR) $(1)/usr/bin
42 $(INSTALL_BIN) $(PKG_BUILD_DIR)/nodogsplash $(1)/usr/bin/
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ndsctl $(1)/usr/bin/
44
45 $(INSTALL_DIR) $(1)/etc/init.d
46 $(INSTALL_BIN) files/nodogsplash.init $(1)/etc/init.d/nodogsplash
47 $(INSTALL_DIR) $(1)/etc/config
48 $(INSTALL_CONF) files/nodogsplash.config $(1)/etc/config/nodogsplash
49
50 $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)/htdocs/images
51 $(CP) $(PKG_BUILD_DIR)/resources/splash.html $(1)/etc/$(PKG_NAME)/htdocs/
52 $(CP) $(PKG_BUILD_DIR)/resources/infoskel.html $(1)/etc/$(PKG_NAME)/htdocs/
53 $(CP) $(PKG_BUILD_DIR)/resources/splash.jpg $(1)/etc/$(PKG_NAME)/htdocs/images/
54 endef
55
56 define Package/nodogsplash/conffiles
57 /etc/nodogsplash/nodogsplash.conf
58 endef
59
60 $(eval $(call BuildPackage,nodogsplash))