opt/qemu/Pkgfile

25 lines
631 B
Plaintext
Raw Normal View History

2009-03-08 19:43:24 +11:00
# 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 texinfo
2009-03-08 19:43:24 +11:00
name=qemu
version=0.10.0
release=2
2009-03-08 19:43:24 +11:00
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
# Documentaion will only be installed if texinfo is found.
[ -d "$PKG/usr/share/man" ] && mv $PKG/usr/share/man $PKG/usr/man
[ -d "$PKG/usr/share/doc" ] && rm -rf $PKG/usr/share/doc
2009-03-08 19:43:24 +11:00
}