diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/hatari |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/hatari')
-rw-r--r-- | community/hatari/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/hatari/PKGBUILD b/community/hatari/PKGBUILD new file mode 100644 index 000000000..49a615578 --- /dev/null +++ b/community/hatari/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 27018 2010-09-16 17:37:18Z schuay $ +# Maintainer: Shinlun Hsieh <yngwiexx@yahoo.com.tw> + +pkgname=hatari +pkgver=1.4.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=('2f30e5c9e146ee92e3f2f5ae1cef3673') + +build() { + cd ${pkgname}-${pkgver} + + ./configure --prefix=/usr + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |