From fbb7655b2bbda812419e1be3f712f771dcda2e73 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Fri, 26 Jan 2018 18:47:34 +0100 Subject: Remove old build instructions/scripts (closes #830) --- main/misc/build-native.sh | 57 ----------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100755 main/misc/build-native.sh (limited to 'main/misc') diff --git a/main/misc/build-native.sh b/main/misc/build-native.sh deleted file mode 100755 index 75706e21..00000000 --- a/main/misc/build-native.sh +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/bash - -# Exit on errors -set -e - -# Generate git config if the openvpn directory is checked out from git -if [ -e openvpn/.git ]; then - GIT=git - cd openvpn - CONFIGURE_GIT_CHFILES=$($GIT diff-files --name-status -r --ignore-submodules --quiet -- || echo "+") - CONFIGURE_GIT_UNCOMMITTED=$($GIT diff-index --cached --quiet --ignore-submodules HEAD || echo "*") - CONFIGURE_GIT_REVISION=$($GIT rev-parse --symbolic-full-name HEAD | cut -d/ -f3)-$($GIT rev-parse --short=16 HEAD) - echo "#define CONFIGURE_GIT_REVISION \"${CONFIGURE_GIT_REVISION}\"" > config-version.h.tmp; \ - echo "#define CONFIGURE_GIT_FLAGS \"${CONFIGURE_GIT_CHFILES}${CONFIGURE_GIT_UNCOMMITTED}\"" >> config-version.h.tmp - - if ! [ -f config-version.h ] || ! cmp -s config-version.h.tmp config-version.h; then \ - echo "replacing config-version.h" - mv config-version.h.tmp config-version.h - else - rm -f config-version.h.tmp - fi - cd .. -else - echo "Cannot find .git directory in openvpn, aborting" - exit 1 -fi - -if [ "x$1" = "x" ]; then - ndk-build -j 8 USE_BREAKPAD=0 -else - ndk-build $@ -fi - -if [ $? = 0 ]; then - rm -rf ovpnlibs/ - - cd libs - mkdir -p ../ovpnlibs/assets - for i in * - do - cp -v $i/nopie_openvpn ../ovpnlibs/assets/nopie_openvpn.$i - cp -v $i/pie_openvpn ../ovpnlibs/assets/pie_openvpn.$i - done - # Removed compiled openssl libs, will use platform so libs - # Reduces size of apk - # - rm -v */libcrypto.so */libssl.so || true - - for arch in * - do - builddir=../ovpnlibs/jniLibs/$arch - mkdir -p $builddir - cp -v $arch/*.so $builddir - done -else - exit $? -fi -- cgit v1.2.3