mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
567 B
Bash
21 lines
567 B
Bash
# $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
|
|
}
|