mirror of
https://git.openwrt.org/feed/routing.git
synced 2025-01-09 04:07:48 +08:00
d6715b0be2
- Replace nonstandard `sys/unistd.h` includes with `unistd.h` ones - Add missing `fcntl.h` include to `libhttpd/protocol.c` in order to provide declarations for `open()`, `O_RDONLY` etc. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
61 lines
1.7 KiB
Makefile
61 lines
1.7 KiB
Makefile
#
|
|
# Copyright (C) 2013-2015 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=nodogsplash
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_VERSION:=0.9_beta9.9.9
|
|
PKG_RELEASE:=6
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=git://github.com/nodogsplash/nodogsplash.git
|
|
PKG_SOURCE_VERSION:=v0.9_beta9.9.9
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_LICENSE:=GPL-2.0+
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
define Package/nodogsplash
|
|
SUBMENU:=Captive Portals
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libpthread +iptables-mod-ipopt
|
|
TITLE:=Open public network gateway daemon
|
|
URL:=https://github.com/nodogsplash/nodogsplash
|
|
endef
|
|
|
|
define Package/nodogsplash/description
|
|
Nodogsplash offers a simple way to open a free hotspot providing
|
|
restricted access to an internet connection.
|
|
endef
|
|
|
|
define Package/nodogsplash/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/nodogsplash $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ndsctl $(1)/usr/bin/
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) files/nodogsplash.init $(1)/etc/init.d/nodogsplash
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) files/nodogsplash.config $(1)/etc/config/nodogsplash
|
|
|
|
$(INSTALL_DIR) $(1)/etc/$(PKG_NAME)/htdocs/images
|
|
$(CP) $(PKG_BUILD_DIR)/resources/splash.html $(1)/etc/$(PKG_NAME)/htdocs/
|
|
$(CP) $(PKG_BUILD_DIR)/resources/infoskel.html $(1)/etc/$(PKG_NAME)/htdocs/
|
|
$(CP) $(PKG_BUILD_DIR)/resources/splash.jpg $(1)/etc/$(PKG_NAME)/htdocs/images/
|
|
endef
|
|
|
|
define Package/nodogsplash/conffiles
|
|
/etc/nodogsplash/nodogsplash.conf
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,nodogsplash))
|