summaryrefslogtreecommitdiff
path: root/extra/qemu/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-05-18 22:46:11 +0000
committerroot <root@rshg047.dnsready.net>2011-05-18 22:46:11 +0000
commit82b609ecce972e236c2ce887ecd55ec30e2874a7 (patch)
tree0f538ac08e2ce61505f47f42534a969f42863767 /extra/qemu/PKGBUILD
parent4a67ab8a761f1d0ef59988a513f9f2163f94a869 (diff)
Wed May 18 22:46:11 UTC 2011
Diffstat (limited to 'extra/qemu/PKGBUILD')
-rw-r--r--extra/qemu/PKGBUILD17
1 files changed, 13 insertions, 4 deletions
diff --git a/extra/qemu/PKGBUILD b/extra/qemu/PKGBUILD
index 12baed1c6..c1ed81cf3 100644
--- a/extra/qemu/PKGBUILD
+++ b/extra/qemu/PKGBUILD
@@ -1,7 +1,7 @@
-# $Id: PKGBUILD 110725 2011-02-21 20:11:19Z tpowa $
+# $Id: PKGBUILD 124178 2011-05-17 13:06:59Z tpowa $
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
pkgname=qemu
-pkgver=0.14.0
+pkgver=0.14.1
pkgrel=1
pkgdesc="QEMU is a generic and open source processor emulator which achieves a good emulation speed by using dynamic translation."
arch=('i686' 'x86_64')
@@ -13,13 +13,14 @@ backup=('etc/qemu/target-x86_64.conf')
install=qemu.install
source=(http://savannah.nongnu.org/download/${pkgname}/${pkgname}-${pkgver}.tar.gz
65-kvm.rules)
+options=(!strip)
build()
{
cd ${srcdir}/${pkgname}-${pkgver}
sed -i -e 's/lib64/lib/g' x86_64.ld
./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list=oss,alsa,sdl,esd \
- --audio-card-list=ac97,sb16,es1370,adlib \
+ --audio-card-list=ac97,sb16,es1370,hda \
--enable-docs \
--kerneldir="/usr/src/linux-$(uname -r)"
make
@@ -30,6 +31,14 @@ package() {
make DESTDIR=${pkgdir} install
install -D -m644 ${srcdir}/65-kvm.rules \
${pkgdir}/lib/udev/rules.d/65-kvm.rules
+ # strip scripts directory
+ find ${pkgdir}/usr/src/linux-${_kernver}/scripts -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=('f9d145d5c09de9f0984ffe9bd1229970'
+md5sums=('b6c713a8db638e173af53a62d5178640'
'b316a066d2f1bb57d8f5b7ea1d0d1caf')