Various compilation scripts & patches for Linux programs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
618 B

  1. #!/bin/bash
  2. #Compile Wine 32-bit and 64-bit from source, separately by using a modified PKGBUILD script.
  3. updpkgsums
  4. makepkg
  5. if [[ $(find ./ -type f -iname "*.tar.xz" | wc -l) -eq 1 ]]; then
  6. #Install compiled Wine files to their corresponding places in PlayOnLinux installation.
  7. cd ./playonlinux-script/
  8. bash ./install-to-pol.sh
  9. fi
  10. #Remove deprecated src & pkg folders
  11. cd ..
  12. rm -fR ./{src,pkg}
  13. #Compiled tar.xz package is not "compatible" or as good as the Wine package compiled with the original PKGBUILD rules. Thus, we remove the created tar.xz file.
  14. rm ./*.tar.xz
  15. #Exit the script execution.
  16. exit