Compare commits

...
11 Commits
2 changed files with 11 additions and 3 deletions
+6 -2
View File
@@ -1,6 +1,6 @@
name: wine
description: A compatibility layer for running Windows programs
version: "11.4"
version: "11.16"
revision: 1
url: https://www.winehq.org/
license: LGPL2.1-or-later
@@ -34,8 +34,10 @@ optional_depends:
- libxinerama
- ocl-icd
- pcsclite
- samba
- sdl2-compat
- unixodbc
- v4l-utils
make_depends:
- alsa-lib
- ffmpeg
@@ -52,12 +54,14 @@ make_depends:
- ocl-icd
- pcsclite
- perl
- samba
- sdl2-compat
- unixodbc
- v4l-utils
- vulkan-headers
- vulkan-tools
downloads:
- url: https://dl.winehq.org/wine/source/${BPM_PKG_VERSION%.*}.x/wine-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 1970a46381d3bc2c44d651d08336370e499eeb8b53dc93cbd1ce544f7115e598
checksum: c66e2090343dcd727f7f7fd2f87ee0bfb0b118790c1d745ab7b8a4c3a4197f2f
+5 -1
View File
@@ -1,4 +1,4 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
# This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
@@ -8,6 +8,10 @@ build() {
mkdir build
cd build
export CROSSCFLAGS="$CFLAGS"
export CROSSCXXFLAGS="$CXXFLAGS"
export CROSSLDFLAGS="$LDFLAGS"
../configure --prefix=/usr --disable-tests --enable-archs=x86_64,i386
make
}