summaryrefslogtreecommitdiff
path: root/package/qemu
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-12-23 20:41:15 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-12-23 20:41:15 +0100
commit845317b460ee99ad633534cad4de72404af7e30b (patch)
treed458cd1bccc932a3261c11b306df64bf50c0d119 /package/qemu
parentc69912d5e2c55587897bb75de3512082e382abae (diff)
add new packages syslinux, nasm and qemu (not perfect..)
Diffstat (limited to 'package/qemu')
-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