mirror of
				https://github.com/openwrt/packages.git
				synced 2025-11-04 02:19:37 +00:00 
			
		
		
		
	Add SUBMENU variable for some packages in Network category. Add title for `dnscrypt-proxy` package. Shorten TITLE variable for `xray-core` package. Filesystem: - cifs-utils File Transfer: - onionshare-cli IP Addresses and Names: - dnscrypt-proxy2 - family-dns - https-dns-proxy - mdns-repeater - nextdns - smartdns Version Control Systems: - git-lfs Wireless: - dawn Signed-off-by: Ryan Keane <the.ra2.ifv@gmail.com>
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) 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:=onionshare-cli
 | 
						|
PKG_VERSION:=2.3.1
 | 
						|
PKG_RELEASE:=3
 | 
						|
 | 
						|
PYPI_NAME:=onionshare-cli
 | 
						|
PYPI_SOURCE_NAME:=onionshare_cli
 | 
						|
PKG_HASH:=47320a5f270b3629586c249fb2ae1c2f67682cb53c5013a8af9702d0d6e50193
 | 
						|
 | 
						|
PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>
 | 
						|
PKG_LICENSE:=GPL-3.0-or-later
 | 
						|
PKG_LICENSE_FILES:=LICENSE
 | 
						|
 | 
						|
PKG_BUILD_DEPENDS:=python-setuptools-scm/host
 | 
						|
 | 
						|
PYTHON3_PKG_FORCE_DISTUTILS_SETUP:=1
 | 
						|
 | 
						|
include ../../lang/python/pypi.mk
 | 
						|
include $(INCLUDE_DIR)/package.mk
 | 
						|
include ../../lang/python/python3-package.mk
 | 
						|
 | 
						|
define Package/onionshare-cli
 | 
						|
  SECTION:=net
 | 
						|
  CATEGORY:=Network
 | 
						|
  TITLE:=Secure chat, web and file sharing
 | 
						|
  SUBMENU:=File Transfer
 | 
						|
  URL:=https://onionshare.org/
 | 
						|
  DEPENDS:= \
 | 
						|
    +python3-light \
 | 
						|
    +python3-psutil \
 | 
						|
    +python3-click \
 | 
						|
    +python3-flask \
 | 
						|
    +python3-flask-httpauth \
 | 
						|
    +python3-flask-socketio \
 | 
						|
    +python3-pysocks \
 | 
						|
    +python3-requests \
 | 
						|
    +python3-stem \
 | 
						|
    +python3-eventlet \
 | 
						|
    +python3-unidecode \
 | 
						|
    +python3-cryptodome \
 | 
						|
    +python3-urllib3 \
 | 
						|
    +tor
 | 
						|
endef
 | 
						|
 | 
						|
define Package/onionshare-cli/description
 | 
						|
  OnionShare is an open source tool that lets you securely and
 | 
						|
  anonymously share files, host websites, and chat with friends using the Tor network.
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call Py3Package,onionshare-cli))
 | 
						|
$(eval $(call BuildPackage,onionshare-cli))
 | 
						|
$(eval $(call BuildPackage,onionshare-cli-src))
 |