1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: Thomas Crescenzi <xsq1104 at aol dot com>
11 pkgdesc="an emulator for the Atari 5200 console and Atari 8-bit computers"
13 url="http://kat5200.jillybunch.com/"
16 depends=(zlib sdl sdl_image guichan)
27 source=(http://kat5200.googlecode.com/files/$pkgname-$pkgver.tar.gz)
29 md5sums=('ca6f0244d0d8c24250e21685d647d633')
32 cd "$srcdir/$pkgname-$pkgver"
33 env CPPFLAGS="-I/usr/include/SDL" ./configure --prefix=/usr
35 make prefix=$pkgdir/usr install
39 cd "$srcdir/$pkgname-$pkgver"
44 cd "$srcdir/$pkgname-$pkgver"
45 make DESTDIR="$pkgdir/" install
48 # vim:set ts=2 sw=2 et: