summaryrefslogtreecommitdiffstats
path: root/modules/retiolum/scripts/tinc_setup/build_arch.sh
blob: 5ef5d765c1e84f5f4a4644ee2205e9a2e985bb09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e
sudo pacman -S openssl gcc lzo
curl http://www.tinc-vpn.org/packages/tinc-1.0.13.tar.gz | tar xz
cd tinc-1.0.13
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make
sudo make install
cd ..

echo "overwriting python to python2"
sed 's/\/usr\/bin\/python/\/usr\/bin\/python2/g' install.sh >install2.sh
mv install2.sh install.sh