- Clone https://github.com/Frogging-Family/wine-tkg-git into an empty folder. Set up the configuration how you wish (make sure to use
debuntuas well). - Drop the
build.shscript adjacent to the topwine-tkg-gitfolder and run it. - (Optionally) delete the docker container with
docker container rm wine-buildonce you're done (if you don't care about ccache or inputting your timezone again). - Profit.
Last active
August 12, 2022 06:09
-
-
Save Hexcede/bd18f5780df9c0bca4d34d0a039482d4 to your computer and use it in GitHub Desktop.
Building wine-tkg in Docker for Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| _build="cd /wine-build/wine-tkg-git/wine-tkg-git && ./non-makepkg-build.sh" | |
| docker start wine-build || (docker run --name wine-build -it -v $(realpath .):/wine-build ubuntu:focal "bash" -c "dpkg --add-architecture i386 && apt update && $_build") | |
| docker exec -it wine-build "bash" -c "$_build" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment