This repository has been archived by the owner on Dec 25, 2024. It is now read-only.
generated from blue-build/template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(wine): install multilib by using script
This should fix the issue where arguments like `?arch=ARCH` on the copr repo parameters do not get registered and the build cannot install the packages from that repo. Cannot test this on my machine for now, so Ill send to GH actions
- Loading branch information
1 parent
29c96af
commit 46aad20
Showing
5 changed files
with
35 additions
and
28 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
type: script-nu | ||
scripts: | ||
- winezgui.nu | ||
- wine-setup.nu |
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env nu | ||
|
||
use lib/std.nu [ARCH] | ||
|
||
let FEDORA_MAJOR_VERSION = (run-external --redirect-combine rpm '-E' '%fedora' | complete).stdout | ||
|
||
[ | ||
$"https://copr.fedorainfracloud.org/coprs/patrickl/pipewire-wineasio/repo/fedora-($FEDORA_MAJOR_VERSION)/patrickl-pipewire-wineasio-fedora-($FEDORA_MAJOR_VERSION).repo" | ||
$"https://copr.fedorainfracloud.org/coprs/patrickl/yabridge/repo/fedora-($FEDORA_MAJOR_VERSION)/patrickl-yabridge-fedora-($FEDORA_MAJOR_VERSION).repo" | ||
$"https://copr.fedorainfracloud.org/coprs/patrickl/wine-tkg/repo/fedora-($FEDORA_MAJOR_VERSION)/patrickl-wine-tkg-fedora-($FEDORA_MAJOR_VERSION).repo?arch=($ARCH)" | ||
$"https://copr.fedorainfracloud.org/coprs/patrickl/wine-mono/repo/fedora-($FEDORA_MAJOR_VERSION)/patrickl-wine-mono-fedora-($FEDORA_MAJOR_VERSION).repo?arch=($ARCH)" | ||
$"https://copr.fedorainfracloud.org/coprs/patrickl/vkd3d/repo/fedora-($FEDORA_MAJOR_VERSION)/patrickl-vkd3d-fedora-($FEDORA_MAJOR_VERSION).repo?arch=($ARCH)" | ||
$"https://copr.fedorainfracloud.org/coprs/patrickl/wine-dxvk/repo/fedora-($FEDORA_MAJOR_VERSION)/patrickl-wine-dxvk-fedora-($FEDORA_MAJOR_VERSION).repo?arch=($ARCH)" | ||
$"https://copr.fedorainfracloud.org/coprs/patrickl/winetricks/repo/fedora-($FEDORA_MAJOR_VERSION)/patrickl-winetricks-fedora-($FEDORA_MAJOR_VERSION).repo?arch=($ARCH)" | ||
$"https://copr.fedorainfracloud.org/coprs/patrickl/libcurl-gnutls/repo/fedora-($FEDORA_MAJOR_VERSION)/patrickl-libcurl-gnutls-fedora-($FEDORA_MAJOR_VERSION).repo?arch=($ARCH)" | ||
] | each { |e| http get $e | save -a /etc/yum.repos.d/wine-related.repo } | ||
|
||
rpm-ostree install wine* wine-dxvk* wine.i686 wine-dxvk.i686 mingw32-wine-gecko mingw64-wine-gecko yabridge pipewire-wineasio libcurl-gnutls icoutils perl-Image-ExifTool | ||
|
||
git clone https://github.com/fastrizwaan/WineZGUI /tmp/winezgui | ||
cd /tmp/winezgui | ||
./setup --install |
This file was deleted.
Oops, something went wrong.