blob: fbdcb0677ec07b43f8eb74f21bdc43ef8a95f8e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer:Integral<luckys68@126.com>
pkgname=qemu-patch-raspberry4
pkgver=6.2.50
pkgrel=2
pkgdesc="A patched version of QEMU 6.2.50 for Raspberry4."
arch=('x86_64')
url="http://www.qemu.org/"
license=('GPL')
makedepends=('git' 'ninja' 'python')
conflicts=('qemu-headless' 'qemu' 'qemu-desktop')
provides=('qemu-headless' 'qemu')
source=(
"git+https://github.com/Integral-Tech/qemu-patch-raspberry4"
)
sha512sums=('SKIP')
package() {
cd ${pkgname}/
mkdir build
cd build/
../configure
make install
}
|