Advertisement
Guest User

Build and Compile Filezilla 3 on Linux

a guest
Dec 10th, 2014
5,896
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.94 KB | None | 0 0
  1. #!/bin/s
  2. #------------------------------
  3. #Author: Josh Lear
  4. #Last update: December 10, 2014
  5. #Basic script for beginners
  6. #to get filezilla on most
  7. #linux distributions
  8. #------------------------------
  9. apt-get install subversion #get subversion
  10. svn co https://svn.filezilla-project.org/svn/FileZilla3/trunk filezilla #get filezilla source
  11. apt-get install libgnutls-dev #install libgnutls
  12. apt-get install libidn2-0-dev #install libidn
  13. apt-get install gettext #install gettext
  14. apt-get install libdbus-c++-dev #install libdbus
  15. apt-get install libwxgtk3.0-dev #install wxWidgets
  16. apt-get install libperl-dev #install libperl-dev
  17. apt-get install libtool #install libtool
  18. apt-get install autoconf #install autoconf
  19. apt-get install automake #install automake
  20. autoreconf -i #generate a configuration per system settings
  21. ./configure #configure the filezilla distro
  22. make #make filezilla
  23. make install #install filezilla
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement