#!/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 }