wine_bin: add recipe for 7.4 version

This commit is contained in:
Gerasim Troeglazov
2022-03-14 17:05:48 +10:00
parent 441bb3f607
commit 149c1bbf8e

View File

@@ -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
}