# Maintainer: Kyle Keen # Contributor: Tom Newsom # Contributor: Kevin Piche pkgname=bochs pkgver=2.7 pkgrel=2 pkgdesc="A portable x86 PC emulation software package, including GUI debugger" arch=('x86_64') url="http://bochs.sourceforge.net/" license=('LGPL') depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2') source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz") sha256sums=('a010ab1bfdc72ac5a08d2e2412cd471c0febd66af1d9349bc0d796879de5b17a') prepare() { cd "$srcdir/$pkgname-$pkgver" # 4.X kernel is basically 3.20 sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure* } build() { cd "$srcdir/$pkgname-$pkgver" ./configure \ --prefix=/usr \ --without-wx \ --with-x11 \ --with-x \ --with-term \ --disable-docbook \ --enable-cpu-level=6 \ --enable-fpu \ --enable-3dnow \ --enable-disasm \ --enable-smp \ --enable-x86-64 \ --enable-avx \ --enable-evex \ --enable-long-phy-address \ --enable-disasm \ --enable-pcidev \ --enable-usb \ --enable-debugger #--with-sdl #--enable-x86-debugger #--enable-all-optimizations #--enable-plugins sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile make -j 1 } package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt" }