summaryrefslogtreecommitdiff
path: root/package/qemu/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/qemu/Makefile')
-rw-r--r--package/qemu/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/package/qemu/Makefile b/package/qemu/Makefile
new file mode 100644
index 000000000..6d5de5bab
--- /dev/null
+++ b/package/qemu/Makefile
@@ -0,0 +1,26 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= qemu
+PKG_VERSION:= 0.13.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 397a0d665da8ba9d3b9583629f3d6421
+PKG_DESCR:= cpu and system emulator
+PKG_SECTION:= misc
+PKG_URL:= http://wwww.qemu.org/
+PKG_SITES:= http://wiki.qemu.org/download/
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,QEMU,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIG_STYLE:= minimal
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_QEMU)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/local/bin/qemu* \
+ $(IDIR_QEMU)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk