qemu: 0.10.5 -> 0.10.6

This commit is contained in:
Thomas Penteker 2009-09-19 01:05:25 +02:00
parent d9d87f586a
commit d74e79e9f8
2 changed files with 19 additions and 18 deletions

View File

@ -1 +1 @@
60060feb98c9649a5da8b136685f76ba qemu-0.10.5.tar.gz
e28f4b2d6faef178da44c03224feecb6 qemu-0.10.6.tar.gz

View File

@ -1,27 +1,28 @@
# Description: Fast CPU emulator and virtualizer
# URL: http://nongnu.org/qemu/
# Maintainer: Lucas Hazel, lucas at die dot net dot au
# Depends on: libsdl
# Optional: kqemu texi2html
# URL: http://www.qemu.org
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Lucas Hazel, lucas at die dot net dot au
# Depends on: libsdl
# Optional: kqemu texi2html
name=qemu
version=0.10.5
version=0.10.6
release=1
source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--cc="${CC:=gcc}" \
--host-cc="${CC:=gcc}"
make
make DESTDIR=$PKG install
cd $name-$version
./configure --prefix=/usr \
--cc="${CC:=gcc}" \
--host-cc="${CC:=gcc}"
make
make DESTDIR=$PKG install
# Documentaion will only be installed if texi2html is installed.
# Documentaion will only be installed if texi2html is installed.
if [ -d "$PKG/usr/share/man" ]; then
mv $PKG/usr/share/man $PKG/usr/man
fi
rm -rf $PKG/usr/share/doc
if [ -d "$PKG/usr/share/man" ]; then
mv $PKG/usr/share/man $PKG/usr/man
fi
rm -rf $PKG/usr/share/doc
}