updated on Fri Jan 13 20:02:10 UTC 2012
[aur-mirror.git] / froggix / PKGBUILD
blob27d11e22aa5f1c5751611aa109737932af823bd9
1 # Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
3 pkgname=froggix
4 pkgver=0.1
5 pkgrel=1
6 pkgdesc='a clone of the classic arcade game "Frogger"'
7 arch=('any')
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')
14 build() {
15   cd $pkgname
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: