mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-11 00:00:08 +08:00
10 lines
264 B
Bash
Executable File
10 lines
264 B
Bash
Executable File
#!/usr/bin/env bash
|
|
. $O3/core/deps/lib-versions
|
|
rm -rf gitar.tmp
|
|
mkdir gitar.tmp
|
|
cd gitar.tmp
|
|
git clone https://github.com/polarssl/polarssl.git -b $POLARSSL_VERSION $POLARSSL_VERSION
|
|
tar cfz $DL/$POLARSSL_VERSION-gpl.tgz $POLARSSL_VERSION
|
|
cd ..
|
|
rm -rf gitar.tmp
|