From 149c1bbf8eb386f203e16769c3cc48804c0d1385 Mon Sep 17 00:00:00 2001 From: Gerasim Troeglazov <3dEyes@gmail.com> Date: Mon, 14 Mar 2022 17:05:48 +1000 Subject: [PATCH] wine_bin: add recipe for 7.4 version --- app-emulation/wine/wine_bin-7.4.recipe | 72 ++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 app-emulation/wine/wine_bin-7.4.recipe diff --git a/app-emulation/wine/wine_bin-7.4.recipe b/app-emulation/wine/wine_bin-7.4.recipe new file mode 100644 index 000000000..07160b435 --- /dev/null +++ b/app-emulation/wine/wine_bin-7.4.recipe @@ -0,0 +1,72 @@ +SUMMARY="Program which allows running Microsoft Windows programs" +DESCRIPTION="Wine is a program which allows running Microsoft Windows programs \ +(including DOS, Windows 3.x, Win32, and Win64 executables) on Unix. \ +It consists of a program loader which loads and executes a Microsoft \ +Windows binary, and a library (called Winelib) that implements Windows \ +API calls using their Unix, X11 or Mac equivalents. The library may also \ +be used for porting Windows code into native Unix executables." +HOMEPAGE="https://www.winehq.org/" +COPYRIGHT="1993-2022 the Wine project authors" +LICENSE="GNU LGPL v2.1" +REVISION="1" +SOURCE_URI="https://github.com/threedeyes/wine/releases/download/${portVersion}-1/wine-${portVersion}-1-x86_64.hpkg#noarchive" +CHECKSUM_SHA256="ef3d0e7648c7e8f21d453a8a77fb29cc48cde6c79645c642179cd6b297368938" +DISABLE_SOURCE_PACKAGE="yes" + +ARCHITECTURES="x86_64" + +PROVIDES=" + wine_bin = $portVersion + cmd:wine64 = $portVersion + cmd:function_grep.pl + cmd:msidb + cmd:msiexec + cmd:notepad + cmd:regedit + cmd:regsvr32 + cmd:widl + cmd:wineboot + cmd:winebuild + cmd:winecfg + cmd:wineconsole + cmd:winecpp + cmd:winedbg + cmd:winedump + cmd:winefile + cmd:wineg++ + cmd:winegcc + cmd:winemaker + cmd:winemine + cmd:winepath + cmd:wineserver + cmd:wmc + cmd:wrc + " +REQUIRES=" + haiku + lib:libfreetype + lib:libvulkan + lib:libusb + " +CONFLICTS=" + wine + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + cmd:cp + " + +BUILD() +{ + mv wine*.hpkg ../wine.hpkg + package extract ../wine.hpkg + rm .PackageInfo +} + +INSTALL() +{ + cp -r * $prefix +}