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.

25 lines
567 B

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