summaryrefslogtreecommitdiff
path: root/community-testing/hatari
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/hatari')
-rw-r--r--community-testing/hatari/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community-testing/hatari/PKGBUILD b/community-testing/hatari/PKGBUILD
new file mode 100644
index 000000000..c9de15c29
--- /dev/null
+++ b/community-testing/hatari/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 63164 2012-01-30 19:00:24Z ibiru $
+# Maintainer: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
+
+pkgname=hatari
+pkgver=1.5.0
+pkgrel=2
+pkgdesc='An Atari ST and STE emulator'
+arch=('i686' 'x86_64')
+url='http://hatari.sourceforge.net/'
+license=('GPL')
+depends=('sdl' 'libpng')
+makedepends=('cmake')
+source=("http://download.berlios.de/hatari/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('16277cff73ec3a342b87b7b7ea3932f4')
+
+build() {
+ cd ${pkgname}-${pkgver}
+
+ ./configure --prefix=/usr
+
+ make
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+
+ make DESTDIR=${pkgdir} install
+}