|
@ -1,13 +1,14 @@ |
|
|
import 'compile/configure' |
|
|
import 'compile/configure' |
|
|
|
|
|
|
|
|
name=qemu |
|
|
name=qemu |
|
|
version=2.10.0 |
|
|
version=2.10.1 |
|
|
update_url='http://www.qemu-project.org/download/' |
|
|
update_url='http://www.qemu-project.org/download/' |
|
|
|
|
|
|
|
|
|
|
|
define_option 'gtk3: Build with gtk3 support' |
|
|
define_option 'targets=all: Define what targets to build (space-separated list)' |
|
|
define_option 'targets=all: Define what targets to build (space-separated list)' |
|
|
|
|
|
|
|
|
dlextract "http://download.qemu-project.org/$name-$version.tar.xz" \ |
|
|
dlextract "http://download.qemu-project.org/$name-$version.tar.xz" \ |
|
|
'a89e3293cf69c32cf4be4188dfa25544' |
|
|
'0c4d98038480c5c19a95990eb8d04a51' |
|
|
_ |
|
|
_ |
|
|
|
|
|
|
|
|
cd "$name-$version" |
|
|
cd "$name-$version" |
|
@ -19,6 +20,11 @@ else |
|
|
targets="--target-list=$(echo "$targets" | sed -e 's/ /,/g')" |
|
|
targets="--target-list=$(echo "$targets" | sed -e 's/ /,/g')" |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
compile_configure -- $targets |
|
|
gtkabi='' |
|
|
|
|
|
if option !gtk3; then |
|
|
|
|
|
gtkabi='--with-gtkabi=2.0' |
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
compile_configure -- $targets $gtkabi |
|
|
|
|
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: |
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: |
|
|