Skip to content

Commit

Permalink
Merge pull request #2134 from mariux64/turn-qemu-into-wrapper
Browse files Browse the repository at this point in the history
Turn qemu into wrapper
  • Loading branch information
donald authored May 5, 2021
2 parents 15e10ef + 93a761b commit 7f4b380
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 48 deletions.
47 changes: 47 additions & 0 deletions qemu-wrapper.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
#!/usr/bin/env beesh

# BEE_VERSION qemu-wrapper-1.0-0

# more info: https://foo.bar.com

SRCURL[0]=""

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}

mee_build() {
echo -e '#! /bin/bash\nprun qemu $(basename "$0") "$@"' >wrapper
chmod +x wrapper
}

mee_install() {
mkdir -p "$D$BINDIR"

# list generated by
# (cd /pkg/qemu-5.1.0-0/bin;ls) | fmt -w 80 | sed 's/.*/ & \\/'
#
for cmd in \
elf2dmp ivshmem-client ivshmem-server qemu-aarch64 qemu-arm qemu-armeb \
qemu-edid qemu-ga qemu-i386 qemu-img qemu-io qemu-keymap qemu-nbd qemu-ppc \
qemu-ppc64 qemu-storage-daemon qemu-system-aarch64 qemu-system-arm \
qemu-system-i386 qemu-system-ppc qemu-system-ppc64 qemu-system-x86_64 \
qemu-x86_64 \
; do
ln "$B/wrapper" "$D$BINDIR/$cmd"
done
}
48 changes: 0 additions & 48 deletions qemu.be0

This file was deleted.

0 comments on commit 7f4b380

Please sign in to comment.