PKGBUILDs/community/hatari/PKGBUILD

22 lines
567 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 1847 2009-09-05 12:49:52Z mherych $
# Maintainer: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
pkgname=hatari
pkgver=1.3.1
pkgrel=1
pkgdesc="An Atari ST and STE emulator"
arch=('i686' 'x86_64')
url="http://hatari.sourceforge.net/"
license=('GPL')
depends=('sdl' 'libpng')
source=(http://download.berlios.de/hatari/hatari-$pkgver.tar.bz2)
md5sums=('112b544ec4affb7c04e931088e62a115')
build() {
cd ${startdir}/src/${pkgname}-${pkgver}
./configure --prefix=/usr --datadir=/usr/share/${pkgname}
make || return 1
make DESTDIR=${startdir}/pkg install
}