1 # Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
6 pkgdesc='A dungeon-crawling game based on the 8-bit Atari computer game "Dandy"'
8 url="http://www.newbreedsoftware.com/fop/"
11 source=(ftp://ftp.tuxpaint.org/unix/x/fop/src/fop-$pkgver.tar.gz)
12 md5sums=('33f0257ed76c82e0f63b761e4080f853')
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 {} \;
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: