You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.1 KiB
79 lines
2.1 KiB
#!/bin/bash
|
|
#
|
|
# Functions for building MinGW port in Docker
|
|
#
|
|
# This file is part of the shadowsocks-libev.
|
|
#
|
|
# shadowsocks-libev is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# shadowsocks-libev is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with shadowsocks-libev; see the file COPYING. If not, see
|
|
# <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
# Exit on error
|
|
set -e
|
|
|
|
# Build options
|
|
BASE="/build"
|
|
PREFIX="$BASE/stage"
|
|
SRC="$BASE/src"
|
|
DIST="$BASE/dist"
|
|
|
|
# Project URL
|
|
PROJ_SITE=$REPO # Change REPO in Makefile
|
|
PROJ_REV=$REV # Change REV in Makefile
|
|
PROJ_URL=https://github.com/${PROJ_SITE}/shadowsocks-libev.git
|
|
|
|
# Libraries from project
|
|
|
|
## libev for MinGW
|
|
LIBEV_VER=mingw
|
|
LIBEV_SRC=libev-${LIBEV_VER}
|
|
LIBEV_URL=https://github.com/${PROJ_SITE}/libev/archive/${LIBEV_VER}.tar.gz
|
|
|
|
# Public libraries
|
|
|
|
## mbedTLS
|
|
MBEDTLS_VER=2.7.0
|
|
MBEDTLS_SRC=mbedtls-${MBEDTLS_VER}
|
|
MBEDTLS_URL=https://tls.mbed.org/download/mbedtls-${MBEDTLS_VER}-apache.tgz
|
|
|
|
## Sodium
|
|
SODIUM_VER=1.0.18
|
|
SODIUM_SRC=libsodium-${SODIUM_VER}-RELEASE
|
|
SODIUM_URL=https://github.com/jedisct1/libsodium/archive/${SODIUM_VER}-RELEASE.tar.gz
|
|
|
|
## PCRE
|
|
PCRE_VER=8.41
|
|
PCRE_SRC=pcre-${PCRE_VER}
|
|
PCRE_URL=https://ftp.pcre.org/pub/pcre/${PCRE_SRC}.tar.gz
|
|
|
|
## c-ares
|
|
CARES_VER=1.14.0
|
|
CARES_SRC=c-ares-${CARES_VER}
|
|
CARES_URL=https://c-ares.haxx.se/download/${CARES_SRC}.tar.gz
|
|
|
|
# Build steps
|
|
|
|
dk_download() {
|
|
mkdir -p "${SRC}"
|
|
cd "${SRC}"
|
|
DOWN="aria2c --file-allocation=trunc -s10 -x10 -j10 -c"
|
|
for pkg in LIBEV SODIUM MBEDTLS PCRE CARES; do
|
|
src=${pkg}_SRC
|
|
url=${pkg}_URL
|
|
out="${!src}".tar.gz
|
|
$DOWN ${!url} -o "${out}"
|
|
echo "Unpacking ${out}..."
|
|
tar zxf ${out}
|
|
done
|
|
}
|