Dependencies
sudo dnf install 'rpm-build'
Prepare Build Environment
Acquire SRPM
wget -O ~/'Downloads/wine-fc27.src.rpm' 'https://kojipkgs.fedoraproject.org//packages/wine/3.4/1.fc27/src/wine-3.4-1.fc27.src.rpm'
rm -Rf ~/'rpmbuild' && rpm -ivh ~/'Downloads/wine'*'.src.rpm' && rm -fv ~/'Downloads/wine'*'.src.rpm' && sync
Spec Config
gio open ~/'rpmbuild/SPECS/wine.spec'
Enable Wine Staging
Change 0 to 1 specifically on the following line
If Fedora provides a new SRPM in the future that includes Staging, they'll likely do this, in which case this can be removed from here
%global compholio 0
%global compholio 1
Version
Release
Default release format is 1%{?dist}
Increase 1 for future package builds
Since this is master and no newer Version is expected, this number should continue increasing forever
-
Release: 7%{?dist}
Sources
Wine
Source0: https://github.com/wine-mirror/wine/archive/master.tar.gz#/wine-%{version}.tar.gz
Source10: http://downloads.sourceforge.net/wine/wine-3.3.tar.xz.sign
Wine Staging
Source900: https://github.com/wine-staging/wine-staging/archive/master.tar.gz#/wine-staging-%{version}.tar.gz
GCC Flags
Ofast
export TEMP_CFLAGS="`echo $RPM_OPT_FLAGS | sed -e 's/-O2/-O1/'`"
export TEMP_CFLAGS="`echo $RPM_OPT_FLAGS | sed -e 's/-O2/-Ofast/'`"
Fixes
Vulkan ICD loader DLL
%if 0%{?compholio}
%{_libdir}/wine/vulkan-1.dll.so
%{_libdir}/wine/vulkan.dll.so
%endif
Other
%{_libdir}/wine/strmdll.dll.so
%if 0%{?compholio}
%{_libdir}/wine/api-ms-win-appmodel-runtime-l1-1-1.dll.so
%endif
Wine Source Packages
Remove Existing Archive
rm -fv ~/'rpmbuild/SOURCES/wine-'*'.tar.xz'
Wine
wget -O ~/'rpmbuild/SOURCES/wine-master.tar.gz' 'https://github.com/wine-mirror/wine/archive/master.tar.gz'
Wine Staging
wget -O ~/'rpmbuild/SOURCES/wine-staging-master.tar.gz' 'https://github.com/wine-staging/wine-staging/archive/master.tar.gz'
Build SRPM
rpmbuild -bs ~/'rpmbuild/SPECS/wine.spec' && sync
~/rpmbuild/SRPMS
Compile Locally
sudo dnf builddep ~/'Downloads/wine'*'.src.rpm' && sync
rpmbuild -ba ~/'rpmbuild/SPECS/wine.spec' && sync
Cleanup
sudo dnf remove 'rpm-build'
rm -Rf ~/'rpmbuild' ~/'Downloads/wine'*'.src.rpm'