make_environement.sh 916 B

1234567891011121314151617181920
  1. #!/bin/bash
  2. sudo apt-get update
  3. sudo apt-get upgrade -y
  4. sudo apt-get install -y lzip build-essential git autoconf autopoint bison flex gperf libtool libtool-bin python ruby scons unzip intltool p7zip-full libgtk2.0-dev libssl-dev -y
  5. sudo apt-get install -y lftp zip pv pixz upx
  6. cd /opt
  7. sudo git clone -n https://github.com/mxe/mxe.git
  8. cd mxe
  9. sudo git reset --hard 64b283d64891348c92154b8d7eace6a9bff23411
  10. #sudo git pull
  11. export MXE_DIR=/opt/mxe
  12. export MXE_TARGETS='i686-w64-mingw32.static'
  13. sudo make -j 5 -C $MXE_DIR MXE_TARGETS="$MXE_TARGETS" curl pthreads pdcurses ncurses libusb1 jansson libevent libmicrohttpd curl
  14. echo 'export PATH=/opt/mxe/usr/bin:$PATH' >> ~/.profile
  15. echo 'export PKG_CONFIG_PATH=/opt/mxe/usr/i686-w64-mingw32.static/lib/pkgconfig/' >> ~/.profile
  16. export PATH=/opt/mxe/usr/bin:$PATH
  17. export PKG_CONFIG_PATH=/opt/mxe/usr/i686-w64-mingw32.static/lib/pkgconfig/
  18. cd ~
  19. echo ""
  20. echo "environement ok"