Rebuild with libslirp

This commit is contained in:
2025-10-02 14:51:49 +03:00
parent 5dab505f6a
commit 9e6981f709
2 changed files with 3 additions and 9 deletions
+2 -1
View File
@@ -1,7 +1,7 @@
name: qemu name: qemu
description: A generic and open source machine emulator and virtualizer description: A generic and open source machine emulator and virtualizer
version: 10.1.0 version: 10.1.0
revision: 1 revision: 2
url: https://www.qemu.org/ url: https://www.qemu.org/
license: GPL2-only,LGPL2.1-only license: GPL2-only,LGPL2.1-only
architecture: any architecture: any
@@ -30,6 +30,7 @@ depends:
- libpng - libpng
- libpulse - libpulse
- libseccomp - libseccomp
- libslirp
- libssh2 - libssh2
- liburing - liburing
- lzo - lzo
+1 -8
View File
@@ -2,12 +2,6 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # 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 # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The prepare function is executed in the root of the temp directory
# This function is used for putting downloaded files to the correct location or applying patches
prepare() {
echo "You may remove this function if you do not intend to use it"
}
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
@@ -17,15 +11,14 @@ build() {
../configure --prefix=/usr \ ../configure --prefix=/usr \
--sysconfdir=/etc \ --sysconfdir=/etc \
--localstatedir=/var \ --localstatedir=/var \
--audio-drv-list=alsa \
--disable-user \ --disable-user \
--enable-attr \ --enable-attr \
--enable-tcg \ --enable-tcg \
--enable-slirp \ --enable-slirp \
--enable-modules \ --enable-modules \
--enable-sdl \ --enable-sdl \
--disable-slirp \
--enable-tpm \ --enable-tpm \
--enable-kvm \
--with-coroutine=ucontext --with-coroutine=ucontext
make make
} }