summaryrefslogtreecommitdiff
path: root/extra/qemu-kvm/PKGBUILD
blob: 43c91f938bf078ae22a53e83eb7b55168a374081 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# $Id: PKGBUILD 158632 2012-05-05 03:24:58Z allan $
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
pkgname=qemu-kvm
pkgver=1.0.1
pkgrel=2
pkgdesc="Latest KVM QEMU is a generic and open source processor emulator which achieves a good emulation speed by using dynamic translation."
arch=(i686 x86_64)
license=('GPL2' 'LGPL2.1')
url="http://www.linux-kvm.org"
depends=('libjpeg' 'libpng' 'libsasl' 'curl' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux' 'libpulse')
makedepends=('git' 'iasl' 'texi2html' 'perl' 'python2')
backup=('etc/qemu/target-x86_64.conf')
install=qemu-kvm.install
conflicts=('qemu')
provides=('qemu')
replaces=('kvm')
source=(http://downloads.sourceforge.net/kvm/${pkgname}-${pkgver}.tar.gz
        65-kvm.rules)
options=(!strip)

build()
{
    cd "${srcdir}/${pkgname}-${pkgver}"
    # fix esound building
    ./configure --prefix=/usr \
                --python=/usr/bin/python2 \
                --sysconfdir=/etc \
                --audio-drv-list=alsa,sdl,oss,pa \
                --audio-card-list=ac97,sb16,es1370,hda \
                --enable-docs
    make

    # Use latest seabios version
    # https://bugs.archlinux.org/task/27616
    cd "${srcdir}/"
    git clone git://git.seabios.org/seabios.git
    cd seabios
    #find 'tools/' 'contrib' -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
    sed -i -e 's/python/python2/g' Makefile
    make clean
    make
}

package()
{
    cd "${srcdir}/${pkgname}-${pkgver}"
    make DESTDIR="${pkgdir}" install
    
    # Use latest seabios version
    # https://bugs.archlinux.org/task/27616
    cp "${srcdir}/seabios/out/bios.bin" "${pkgdir}/usr/share/qemu/bios.bin"

    # symbolic link for backwards compatibility
    ln -s qemu-system-x86_64 "${pkgdir}/usr/bin/qemu-kvm"
    # symbolic link for to qemu binary for emulator apps
    ln -s qemu-system-x86_64 "${pkgdir}/usr/bin/qemu"
    # symbolic link for to qemu binary for emulator apps
    ln -s qemu-system-x86_64 "${pkgdir}/usr/bin/kvm"
    # fix man page
    mv "${pkgdir}/usr/share/man/man1/qemu.1" \
                     "${pkgdir}/usr/share/man/man1/qemu-kvm.1"
    # install udev rules
    install -D -m644 "${srcdir}/65-kvm.rules" \
                     "${pkgdir}/usr/lib/udev/rules.d/65-kvm.rules"
    # strip scripts directory
    find "${pkgdir}/usr/bin"  -type f -perm -u+w 2>/dev/null | while read binary ; do
      case "$(file -bi "$binary")" in
        *application/x-executable*) # Binaries
        /usr/bin/strip $STRIP_BINARIES "$binary";;
      esac
    done
}
md5sums=('f23711fb9f3c70f802829b109ba9aa27'
         'b316a066d2f1bb57d8f5b7ea1d0d1caf')