updated on Mon Jan 23 00:00:36 UTC 2012
[aur-mirror.git] / fop-game / PKGBUILD
blobb6ded26cb404961bdfac1ade6ea89041b00dc4ce
1 # Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
3 pkgname=fop-game
4 pkgver=0.5
5 pkgrel=1
6 pkgdesc='A dungeon-crawling game based on the 8-bit Atari computer game "Dandy"'
7 arch=('i686' 'x86_64')
8 url="http://www.newbreedsoftware.com/fop/"
9 license=('GPL')
10 depends=('sdl_image')
11 source=(ftp://ftp.tuxpaint.org/unix/x/fop/src/fop-$pkgver.tar.gz)
12 md5sums=('33f0257ed76c82e0f63b761e4080f853')
14 build() {
15   cd fop-$pkgver
17   sed 's|"data|"/usr/share/fop|g' -i src/fop.c
18   sed 's|=-Wall -O2|+=|g' -i Makefile
20   find -type f -exec chmod 644 {} \;
21   find -type d -exec chmod 755 {} \;
23   make || return 1
25   mkdir -p "$pkgdir"/usr/{bin,share/{doc,fop}}
26   install -m755 fop "$pkgdir"/usr/bin/
27   cp -rf data/. "$pkgdir"/usr/share/fop/
28   cp -rf docs/ "$pkgdir"/usr/share/doc/fop/
31 # vim:set ts=2 sw=2 et: