1 # Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
6 pkgdesc='a clone of the classic arcade game "Frogger"'
8 url="http://sourceforge.net/projects/froggix/"
9 license=('GPL3' 'CCPL' 'custom')
10 depends=('python-pygame')
11 source=(http://downloads.sourceforge.net/$pkgname/Froggix.zip)
12 md5sums=('4f4daff7f20bb4b29edf7124de4cdea0')
17 sed 's|data/|/usr/share/froggix/data/|g;1i#!/usr/bin/python' -i froggix.py
19 install -Dm755 froggix.py "$pkgdir"/usr/bin/froggix
20 mkdir -p "$pkgdir"/usr/share/froggix
21 cp -rf data/ "$pkgdir"/usr/share/froggix/
23 install -Dm644 Credits_and_Licenses \
24 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
27 # vim:set ts=2 sw=2 et: