mirror of
https://github.com/openwrt/packages.git
synced 2025-07-24 00:11:40 +00:00
Add me as a second maintainer. Remove outdated README.md but put a link to a Wiki instead. Use Onion Service instead of Hidden Service. Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
67 lines
1.5 KiB
Makefile
67 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2020-2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=tor-hs
|
|
PKG_VERSION:=0.1.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>, Sergey Ponomarev <stokito@gmail.com>
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/tor-hs
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=IP Addresses and Names
|
|
TITLE:=Tor onion service configurator
|
|
DEPENDS:=+tor +rpcd
|
|
endef
|
|
|
|
define Package/tor-hs/description
|
|
Tor Onion (Hidden) Service configurator.
|
|
See documentation https://openwrt.org/docs/guide-user/services/tor/hs
|
|
endef
|
|
|
|
define Package/tor-hs/conffiles
|
|
/etc/config/tor-hs
|
|
/etc/tor
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Build/Install
|
|
endef
|
|
|
|
define Package/tor-hs/postinst
|
|
#!/bin/sh
|
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/rpcd restart
|
|
exit 0
|
|
endef
|
|
|
|
define Package/tor-hs/postrm
|
|
#!/bin/sh
|
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/rpcd restart
|
|
exit 0
|
|
endef
|
|
|
|
define Package/tor-hs/install
|
|
$(INSTALL_DIR) $(1)/etc/config/
|
|
$(CP) ./files/tor-hs.conf $(1)/etc/config/tor-hs
|
|
$(INSTALL_DIR) $(1)/etc/init.d/
|
|
$(INSTALL_BIN) ./files/tor-hs.init $(1)/etc/init.d/tor-hs
|
|
$(INSTALL_DIR) $(1)/etc/tor/
|
|
$(INSTALL_BIN) ./files/nextcloud-update.sh $(1)/etc/tor/
|
|
$(INSTALL_DIR) $(1)/usr/libexec/rpcd
|
|
$(INSTALL_BIN) ./files/tor_rpcd.sh $(1)/usr/libexec/rpcd/tor-hs-rpc
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,tor-hs))
|