updated on Tue Jan 10 08:08:34 UTC 2012
[aur-mirror.git] / kat5200 / PKGBUILD
blob99a9fb858ba913a9a5ffd4ec08b90fc01996118d
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>
7 pkgname=kat5200
8 pkgver=0.6.2
9 pkgrel=1
10 epoch=
11 pkgdesc="an emulator for the Atari 5200 console and Atari 8-bit computers"
12 arch=(i686 x86_64)
13 url="http://kat5200.jillybunch.com/"
14 license=('GPL')
15 groups=()
16 depends=(zlib sdl sdl_image guichan)
17 makedepends=()
18 checkdepends=()
19 optdepends=()
20 provides=()
21 conflicts=()
22 replaces=()
23 backup=()
24 options=()
25 install=
26 changelog=
27 source=(http://kat5200.googlecode.com/files/$pkgname-$pkgver.tar.gz)
28 noextract=()
29 md5sums=('ca6f0244d0d8c24250e21685d647d633')
31 build() {
32   cd "$srcdir/$pkgname-$pkgver"
33   env CPPFLAGS="-I/usr/include/SDL" ./configure --prefix=/usr
34   make
35   make prefix=$pkgdir/usr install
38 check() {
39   cd "$srcdir/$pkgname-$pkgver"
40   make -k check
43 package() {
44   cd "$srcdir/$pkgname-$pkgver"
45   make DESTDIR="$pkgdir/" install
48 # vim:set ts=2 sw=2 et: