mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 22:48:55 +02:00
73 lines
1.5 KiB
Bash
73 lines
1.5 KiB
Bash
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="7b09075c5d046190f62186c92cb1fad2f93c6b3f982446b7ff48515fdd4faf23"
|
|
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
|
|
}
|