tor_static/build.sh

26 lines
380 B
Bash
Raw Normal View History

2018-11-02 09:48:37 +00:00
#!/bin/bash
rootdir=/opt/tor_static
#build zlib
cd $rootdir/zlib/repo/
`cat ../config`
make && make install
#build libevent
cd $rootdir/libevent/repo/
./autogen.sh
`cat ../config`
make && make install
#build openssl
cd $rootdir/openssl/repo/
./autogen.sh
`cat ../config`
make && make install
#build static tor
cd $rootdir/tor
./autogen.sh
`cat ../config`
make && make install