Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
560 B

import 'compile/configure'
name=qemu
version=2.7.0
update_url='http://wiki.qemu.org/Download'
define_option 'targets=all: Define what targets to build (space-separated list)'
dlextract "http://wiki.qemu-project.org/download/$name-$version.tar.bz2" \
'08d4d06d1cb598efecd796137f4844ab'
header_end
cd "$name-$version"
targets="$(option =targets)"
if [ "$targets" = "all" ]; then
targets=""
else
targets="--target-list=$(echo "$targets" | sed -e 's/ /,/g')"
fi
compile_configure -- $targets
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: