From 4c61af227b0fb3e028c877dc1c2e0b6513960762 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 11 Dec 2022 18:08:51 +0000 Subject: Updated linux --- repo/wine/wine.xibuild | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 repo/wine/wine.xibuild (limited to 'repo/wine/wine.xibuild') diff --git a/repo/wine/wine.xibuild b/repo/wine/wine.xibuild new file mode 100644 index 0000000..88c16ef --- /dev/null +++ b/repo/wine/wine.xibuild @@ -0,0 +1,64 @@ +#!/bin/sh + +NAME="wine" +DESC="A compatibility layer for running Windows programs" + +MAKEDEPS=" alsa-lib autoconf automake bison cups dbus flex fontconfig freetype giflib gnutls gstreamer gst-plugins-base krb5 libgphoto2 libpcap libusb libxcomposite libxcursor libxdamage libxi libxinerama libxrandr libxrender mesa mingw-w64-gcc mpg123 ncurses openal-soft opencl sane sdl2 udisks2 v4l-utils vkd3d vulkan-loader" + +PKG_VER=7.18 +SOURCE="https://dl.winehq.org/wine/source/7.x/wine-$PKG_VER.tar.xz" + +ADDITIONAL=" +rpath.patch +" + +prepare() { + apply_patches + # fix opencl header detection + sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i configure* +} + +build() { + ./configure \ + --prefix=/usr \ + --libdir=/usr/lib \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --with-dbus \ + --without-ldap \ + --with-mingw \ + --with-x \ + --with-vulkan \ + --enable-win64 + make LDFLAGS="$LDFLAGS $_no_pie" tools/winedump/winedump + make +} + +check() { + xvfb-run make test +} + +package() { + make DESTDIR="$PKG_DEST" install + + install -Dm755 tools/wineapploader \ + "$PKG_DEST"/usr/bin/wineapploader + + local file + for file in msiexec notepad regedit regsvr32 wineboot \ + winecfg wineconsole winefile winemine winepath + do + rm "$PKG_DEST"/usr/bin/$file + ln -sf /usr/bin/wineapploader "$PKG_DEST"/usr/bin/$file + done + + case "$CARCH" in + x86_64) + x86_64-w64-mingw32-strip --strip-unneeded "$PKG_DEST"/usr/lib/wine/x86_64-windows/*.dll + ;; + x86) + i686-w64-mingw32-strip --strip-unneeded "$PKG_DEST"/usr/lib/wine/i386-windows/*.dll + ;; + esac +} + -- cgit v1.2.1