summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 876654aa04bbb4bfa92b5578c8307c0982b01e0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: schuay <jakob.gruber@gmail.com>
 
pkgname=pacman_sdl
pkgver=0.1.1
pkgdesc="Pacman clone using SDL. Guide Pacman through a maze and collect pac-dots while avoiding ghosts."
pkgrel=2
arch=('i686' 'x86_64')
url="http://github.com/schuay/pacman/"
license=('GPL')
source=("https://github.com/downloads/schuay/pacman/pacman-$pkgver.tar.bz2")
md5sums=('8cc780d3995579c329f297455899fff5')
depends=('sdl_ttf' 'sdl_gfx' 'sdl_mixer' 'sdl_image')
makedepends=('boost')

build() {
  cd ${srcdir}/src/

  autoconf
  ./configure
  make
}
package() {
  cd ${srcdir}/src/

  make DESTDIR=${pkgdir} install
}