First commit

This commit is contained in:
emdee 2022-11-02 08:12:45 +00:00
parent 40bff34006
commit 57d60609e2
179 changed files with 59241 additions and 0 deletions

19
packaging/DEBIAN/control Normal file
View file

@ -0,0 +1,19 @@
Source: selektor
Section: web
Priority: optional
Version: 3.13.73
Installed-Size: 416
Maintainer: Alistair Neil <info@dazzleships.net>
Homepage: http://www.dazzleships.net
Package: selektor
Architecture: all
Depends: default-jre,
libnotify-bin,
libglib2.0-bin,
tor,
tor-geoipdb
Description: Tor exit node selector and traffic router
SelekTOR is a GUI frontend for the network Tor client. Used for security and
anonymization purposes or to bypass some firewall. Simplifies the process of
selecting Tor exit nodes and manages selective URL pattern based on routing
via system proxying.

10
packaging/DEBIAN/postinst Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh -e
# Move autostart
set -e
mv /usr/share/applications/selektor-autostart.desktop /etc/xdg/autostart -f
# Automatically added by dh_icons
if which update-icon-caches >/dev/null 2>&1 ; then
update-icon-caches /usr/share/icons/selektor.png
fi
# End automatically added section

10
packaging/DEBIAN/postrm Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh -e
# Remove autostart
set -e
rm /etc/xdg/autostart/selektor-autostart.desktop -f
# Automatically added by dh_icons
if which update-icon-caches >/dev/null 2>&1 ; then
update-icon-caches /usr/share/icons/selektor.png
fi
# End automatically added section