summaryrefslogtreecommitdiffstats
path: root/rules/host-qemu.make
diff options
context:
space:
mode:
Diffstat (limited to 'rules/host-qemu.make')
-rw-r--r--rules/host-qemu.make38
1 files changed, 38 insertions, 0 deletions
diff --git a/rules/host-qemu.make b/rules/host-qemu.make
new file mode 100644
index 0000000..6fd8133
--- /dev/null
+++ b/rules/host-qemu.make
@@ -0,0 +1,38 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2012 by Bernhard Walle <bernhard@bwalle.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+HOST_PACKAGES-$(PTXCONF_HOST_QEMU) += host-qemu
+
+#
+# Paths and names
+#
+HOST_QEMU_VERSION := 1.1.0-1
+HOST_QEMU_MD5 := f5c85c229b780bc39268845b6f365fc1
+HOST_QEMU := qemu-$(HOST_QEMU_VERSION)
+HOST_QEMU_SUFFIX := tar.bz2
+HOST_QEMU_URL := http://wiki.qemu.org/download/$(HOST_QEMU).$(HOST_QEMU_SUFFIX)
+HOST_QEMU_SOURCE := $(SRCDIR)/$(HOST_QEMU).$(HOST_QEMU_SUFFIX)
+HOST_QEMU_DIR := $(HOST_BUILDDIR)/$(HOST_QEMU)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# autoconf
+#
+HOST_QEMU_CONF_TOOL := autoconf
+HOST_QEMU_CONF_OPT := $(HOST_AUTOCONF) \
+ --target-list=arm-softmmu,i386-softmmu
+
+# vim: syntax=make