42 lines
1.1 KiB
Text
42 lines
1.1 KiB
Text
# Template file for 'qemu-user-static'
|
|
pkgname=qemu-user-static
|
|
version=1.5.0
|
|
revision=1
|
|
wrksrc="qemu-${version}"
|
|
hostmakedepends="pkg-config automake python"
|
|
makedepends="libglib-devel pixman-devel libuuid-devel>=2.22.2_9"
|
|
short_desc="QEMU User-mode emulators (statically compiled)"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://qemu.org"
|
|
license="GPL-2, LGPL-2.1"
|
|
distfiles="http://wiki.qemu.org/download/qemu-${version}.tar.bz2"
|
|
checksum=b22b30ee9712568dfb4eedf76783f4a76546e1cbc41659b909646bcf0b4867bb
|
|
|
|
do_configure() {
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/libexec \
|
|
--disable-kvm --disable-vnc-png --disable-vnc-tls \
|
|
--disable-virtfs --disable-fdt --disable-seccomp \
|
|
--disable-kvm --enable-linux-user --disable-system
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs} LDFLAGS="-static -lrt -luuid"
|
|
}
|
|
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install
|
|
# Remove unneeded stuff.
|
|
rm -rf ${DESTDIR}/etc ${DESTDIR}/usr/share ${DESTDIR}/usr/libexec
|
|
for f in nbd io img; do
|
|
rm -f ${DESTDIR}/usr/bin/qemu-${f}
|
|
done
|
|
for f in ${DESTDIR}/usr/bin/*; do
|
|
mv ${f} ${f}-static
|
|
done
|
|
}
|
|
|
|
qemu-user-static_package() {
|
|
pkg_install() {
|
|
vmove all
|
|
}
|
|
}
|