104 lines
2.6 KiB
Bash
Executable File
104 lines
2.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# In this configuration, the following dependent libraries are compiled:
|
|
#
|
|
# * zlib
|
|
# * c-ares
|
|
# * expat
|
|
# * sqlite3
|
|
# * openSSL
|
|
# * libssh2
|
|
|
|
#IMPORTANT: Require install gcc-mingw-w64-i686 g++-mingw-w64-i686
|
|
|
|
#CHECK TOOL FOR DOWNLOAD
|
|
aria2c --help > /dev/null
|
|
if [ "$?" -eq 0 ] ; then
|
|
DOWNLOADER="aria2c --check-certificate=false"
|
|
else
|
|
DOWNLOADER="wget -c"
|
|
fi
|
|
|
|
## DEPENDENCES ##
|
|
ZLIB=http://sourceforge.net/projects/libpng/files/zlib/1.2.8/zlib-1.2.8.tar.gz
|
|
OPENSSL=http://www.openssl.org/source/openssl-1.0.2h.tar.gz
|
|
EXPAT=https://sourceforge.net/projects/expat/files/expat/2.1.1/expat-2.1.1.tar.bz2
|
|
SQLITE3=http://www.sqlite.org/2016/sqlite-autoconf-3120200.tar.gz
|
|
C_ARES=http://c-ares.haxx.se/download/c-ares-1.11.0.tar.gz
|
|
SSH2=https://www.libssh2.org/download/libssh2-1.7.0.tar.gz
|
|
|
|
## CONFIG ##
|
|
BUILD_DIRECTORY=/tmp/
|
|
HOST=i686-w64-mingw32
|
|
PREFIX=/usr/i686-w64-mingw32
|
|
|
|
## BUILD ##
|
|
cd $BUILD_DIRECTORY
|
|
#
|
|
# zlib build
|
|
$DOWNLOADER $ZLIB
|
|
tar zxvf zlib-1.2.8.tar.gz
|
|
cd zlib-1.2.8/
|
|
CC=$HOST-gcc CXX=$HOST-g++ AR=$HOST-ar RANLIB=$HOST-ranlib ./configure --prefix=$PREFIX --static
|
|
make
|
|
make install
|
|
#
|
|
# expat build
|
|
cd ..
|
|
$DOWNLOADER $EXPAT
|
|
tar jxvf expat-2.1.1.tar.bz2
|
|
cd expat-2.1.1/
|
|
CC=$HOST-gcc CXX=$HOST-g++ AR=$HOST-ar RANLIB=$HOST-ranlib ./configure --prefix=$PREFIX --host=$HOST --enable-static --enable-shared
|
|
make
|
|
make install
|
|
#
|
|
# c-ares build
|
|
cd ..
|
|
$DOWNLOADER $C_ARES
|
|
tar zxvf c-ares-1.11.0.tar.gz
|
|
cd c-ares-1.11.0/
|
|
CC=$HOST-gcc CXX=$HOST-g++ AR=$HOST-ar RANLIB=$HOST-ranlib ./configure --prefix=$PREFIX --host=$HOST --enable-static --disable-shared
|
|
make
|
|
make install
|
|
#
|
|
# Openssl build
|
|
cd ..
|
|
$DOWNLOADER $OPENSSL
|
|
tar zxvf openssl-1.0.2h.tar.gz
|
|
cd openssl-1.0.2h/
|
|
./Configure mingw --cross-compile-prefix=$HOST- --prefix=$PREFIX shared
|
|
make
|
|
make install
|
|
#
|
|
# sqlite3
|
|
cd ..
|
|
$DOWNLOADER $SQLITE3
|
|
tar zxvf sqlite-autoconf-3120200.tar.gz
|
|
cd sqlite-autoconf-3120200/
|
|
CC=$HOST-gcc CXX=$HOST-g++ AR=$HOST-ar RANLIB=$HOST-ranlib ./configure --prefix=$PREFIX --host=$HOST --enable-static --enable-shared
|
|
make
|
|
make install
|
|
#
|
|
# libssh2
|
|
cd ..
|
|
$DOWNLOADER $SSH2
|
|
tar zxvf libssh2-1.7.0.tar.gz
|
|
cd libssh2-1.7.0/
|
|
rm -rf $PREFIX/lib/pkgconfig/libssh2.pc
|
|
CC=$HOST-gcc CXX=$HOST-g++ AR=$HOST-ar RANLIB=$HOST-ranlib ./configure --without-libgcrypt --with-openssl --without-wincng --prefix=$PREFIX --host=$HOST --enable-static --disable-shared
|
|
make
|
|
make install
|
|
#
|
|
#cleaning
|
|
cd ..
|
|
rm -rf c-ares*
|
|
rm -rf sqlite-autoconf*
|
|
rm -rf zlib-*
|
|
rm -rf expat-*
|
|
rm -rf openssl-*
|
|
rm -rf libssh2-*
|
|
|
|
#
|
|
echo "finished!"
|
|
|