summaryrefslogtreecommitdiff
path: root/community/bochs/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/bochs/PKGBUILD')
-rw-r--r--community/bochs/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/bochs/PKGBUILD b/community/bochs/PKGBUILD
new file mode 100644
index 000000000..b8df6203d
--- /dev/null
+++ b/community/bochs/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 83126 2013-01-27 16:09:41Z pierre $
+#Contributor: Tom Newsom <Jeepster@gmx.co.uk>
+# Maintainer: Kevin Piche <kevin@archlinux.org>
+
+pkgname=bochs
+pkgver=2.6
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/"
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+md5sums=('7e25e1a4d2f7e0464e8d6381f38741d9')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
+ --enable-fpu --enable-3dnow --enable-disasm
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
+}