├── README.md ├── install.sh └── LICENSE /README.md: -------------------------------------------------------------------------------- 1 | # Awesome-Shadowsocks-Qt5-Installation-on-Debian 2 | Installation Script For shadowsocks-Qt5 on Debian 3 | 4 | ## Usage 5 | ``` bash 6 | git clone https://github.com/rccoder/Awesome-Shadowsocks-Qt5-Installation-on-Debian 7 | cd Awesome-Shadowsocks-Qt5-Installation-on-Debian 8 | sudo chmod +x install.sh 9 | ./install.sh 10 | ``` 11 | 12 | ## Liscense 13 | 14 | The MIT License (MIT) 15 | 16 | Copyright (c) 2016 Shangbin Yang 17 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd ~ 3 | mkdir shadowsocks_qt5 4 | cd shadowsocks_qt5 5 | sudo apt-get install git -y 6 | 7 | sudo apt-get install qt5-qmake qtbase5-dev libbotan1.10-dev g++ -y 8 | git clone https://github.com/shadowsocks/libQtShadowsocks 9 | cd libQtShadowsocks 10 | dpkg-buildpackage -uc -us -b 11 | cd .. 12 | sudo dpkg -i libqtshadowsocks_*.deb 13 | sudo dpkg -i libqtshadowsocks-dev*.deb 14 | 15 | sudo apt-get install qt5-qmake qtbase5-dev libqrencode-dev libappindicator-dev libzbar-dev libbotan1.10-dev -y 16 | git clone https://github.com/shadowsocks/shadowsocks-qt5 17 | cd shadowsocks-qt5 18 | dpkg-buildpackage -uc -us -b 19 | cd .. 20 | sudo dpkg -i shadowsocks-libqtshadowsocks_*.deb 21 | sudo dpkg -i shadowsocks-qt5_*.deb 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Shangbin Yang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------