Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
446
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.44 KB | None | 0 0
  1.  
  2. #[open Terminal, create a directory where you want it installed, e.g. /opt/MLVProducer]
  3. mkdir /opt/MLVProducer
  4. #cd to it, e.g.
  5. cd /opt/MLVProducer
  6.  
  7. #[get wine]
  8. wget https://www.playonlinux.com/wine/binaries/linux-amd64/PlayOnLinux-wine-2.0.2-linux-amd64.pol
  9. mv PlayOnLinux-wine-2.0.2-linux-amd64.pol PlayOnLinux-wine-2.0.2-linux-amd64.tar.bz2
  10. tar xjvf PlayOnLinux-wine-2.0.2-linux-amd64.tar.bz2
  11. mv PlayOnLinux-wine-2.0.2-linux-amd64/wineversion/2.0.2 .
  12. rm -rf PlayOnLinux-wine-2.0.2-linux-amd64
  13. #[if this wine version does not work out of the box, install wine with your system via package manager to get all the things needed to run it. Also, you can try another one or the system's one if sth. fails.]
  14.  
  15. #[make wineprefix]
  16. env WINE=$(pwd)/2.0.2/bin/wine WINEPREFIX=$(pwd)/winePrefix
  17. WINEDLLOVERRIDES="mscoree,mshtml=" WINEARCH=win32 $(pwd)/2.0.2/bin/winecfg
  18. #[close config window with ok]
  19.  
  20. #[install dependecies]
  21. wget  https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
  22. chmod +x ./winetricks
  23. env WINE=$(pwd)/2.0.2/bin/wine WINEPREFIX=$(pwd)/winePrefix
  24. WINEDLLOVERRIDES="mscoree,mshtml=" WINEARCH=win32 ./winetricks vb6run
  25. wget http://openartisthq.org/magiclantern/msvbvm60.dll
  26.  
  27. #[unpack MLVProducer into your install directory, run it with e.g:]
  28. env WINE=$(pwd)/2.0.2/bin/wine WINEPREFIX=$(pwd)/winePrefix  
  29. WINEDLLOVERRIDES="mscoree,mshtml="  WINEARCH=win32 $(pwd)/2.0.2/bin/wine  /opt/MLVProducer/MLVProducer.exe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement