summaryrefslogtreecommitdiff
path: root/package/qemu/Makefile
blob: 1bafddc946a4a5a7a5374b69cfd7ebf6641209af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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_BUILDDEP:=		zlib
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
CONFIGURE_ARGS+=	--host-cc=$(HOSTCC) \
			--cross-prefix=$(TARGET_CROSS) \
			--disable-user \
			--prefix=/usr \
			--sysconfdir=/etc \
			--bindir=/usr/bin

post-install:
	$(INSTALL_DIR) $(IDIR_QEMU)/usr/bin
	$(INSTALL_BIN) $(WRKINST)/usr/bin/qemu* \
		$(IDIR_QEMU)/usr/bin

include ${TOPDIR}/mk/pkg-bottom.mk